/* Modern Professional CSS Reset */
:root {
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    --primary: #6366f1; /* Indigo 500 */
    --primary-glow: rgba(99, 102, 241, 0.5);
    --secondary: #06b6d4; /* Cyan 500 */
    --secondary-glow: rgba(6, 182, 212, 0.5);
    --dark-bg: #020617; /* Slate 950 */
    --card-bg: rgba(15, 23, 42, 0.6); /* Slate 900 / 60% */
    --text-main: #f8fafc;
    --text-muted: #94a3b8;
    --border: rgba(255, 255, 255, 0.1);
    
    --gradient-text: linear-gradient(135deg, #a5b4fc 0%, #67e8f9 100%);
    --gradient-btn: linear-gradient(135deg, #4f46e5 0%, #06b6d4 100%);
    
    --ease-out: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

body {
    background-color: var(--dark-bg);
    color: var(--text-main);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    color: #fff;
    line-height: 1.1;
}

.text-gradient {
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Components */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s var(--ease-out);
    font-size: 1rem;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--gradient-btn);
    color: white;
    border: 1px solid transparent;
    box-shadow: 0 0 20px rgba(79, 70, 229, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(79, 70, 229, 0.5);
}

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

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 1rem 0;
    background: rgba(2, 6, 23, 0.8);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
}

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

.nav-logo a {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.nav-logo i { color: var(--primary); }

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

.sidebar-toggle { font-size: 1.5rem; cursor: pointer; }

@media (max-width: 768px) {
    .nav-actions .btn.btn-primary {
        display: none;
    }
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px; /* Offset for fixed nav */
}

.hero-glow-bg {
    position: absolute;
    width: 60vw;
    height: 60vw;
    background: radial-gradient(circle, var(--primary-glow) 0%, transparent 70%);
    top: -20%;
    left: 50%;
    transform: translateX(-50%);
    z-index: -1;
    opacity: 0.4;
    filter: blur(80px);
}

.hero-content {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: center;
}

.hero-title {
    font-size: 4.5rem;
    margin-bottom: 1.5rem;
    letter-spacing: -0.03em;
}

.hero-description {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 3rem;
    max-width: 600px;
}

.hero-buttons { display: flex; gap: 1rem; }

/* Hero Visual */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

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

.circle-glow {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: radial-gradient(circle, rgba(99, 102, 241, 0.1) 0%, transparent 70%);
    animation: pulse 4s infinite ease-in-out;
}

.circle-inner {
    width: 200px;
    height: 200px;
    background: rgba(15, 23, 42, 0.8);
    border-radius: 50%;
    border: 1px solid var(--primary);
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 0 50px var(--primary-glow);
    backdrop-filter: blur(10px);
}

.circle-inner i {
    font-size: 5rem;
    color: var(--text-main);
}

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

/* Sections */
section { padding: 8rem 0; }

.section-header {
    text-align: center;
    margin-bottom: 5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.section-title {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.25rem;
    color: var(--text-muted);
}

/* Why Elusiv Section */
.why-elusiv {
    background: linear-gradient(180deg, var(--dark-bg) 0%, #0f172a 100%);
    position: relative;
}

.why-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.why-heading {
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    color: white;
}

.why-text {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 3rem;
    max-width: 550px;
}

.why-list, .why-pillars {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.why-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.why-item:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(239, 68, 68, 0.3); /* Red tint for 'problems' */
}

.why-label {
    display: block;
    font-family: var(--font-heading);
    font-weight: 700;
    color: #f87171; /* Soft red */
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.why-copy {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.5;
    display: block;
}

.why-pillar {
    display: flex;
    gap: 1.5rem;
    background: rgba(99, 102, 241, 0.05);
    border: 1px solid rgba(99, 102, 241, 0.1);
    padding: 1.5rem;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.why-pillar:hover {
    background: rgba(99, 102, 241, 0.1);
    border-color: var(--primary);
    transform: translateX(5px);
}

.why-pillar i {
    font-size: 2rem;
    color: var(--secondary);
    margin-top: 0.25rem;
}

.pillar-text h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--secondary);
}

.pillar-text p {
    font-size: 0.95rem;
    margin-bottom: 0;
    color: var(--text-muted);
}

@media (max-width: 968px) {
    .why-layout {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
    
    .why-text {
        max-width: 100%;
    }
}

/* Cards */
.mission-grid, .research-preview-grid, .graph-grid, .token-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.mission-card, .research-preview-item, .token-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    padding: 2.5rem;
    border-radius: 16px;
    transition: all 0.3s ease;
}

.graph-item {
    background: var(--card-bg);
    border: 1px solid var(--border);
    padding: 2rem;
    border-radius: 16px;
    transition: all 0.3s ease;
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: start;
    gap: 1rem;
}

.mission-card:hover, .research-preview-item:hover, .graph-item:hover, .token-card:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
    box-shadow: 0 10px 40px -10px rgba(0,0,0,0.5);
}

.card-icon, .preview-icon, .token-icon {
    width: 64px;
    height: 64px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    color: var(--secondary);
    margin-bottom: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.graph-icon {
    width: 56px;
    height: 56px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--secondary);
    border: 1px solid rgba(255, 255, 255, 0.05);
    margin-bottom: 0;
}

.graph-content {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.graph-content h4 {
    margin: 0;
    font-size: 1.35rem;
    line-height: 1.2;
}

.graph-content p {
    margin: 0;
    color: var(--text-muted);
    line-height: 1.6;
}

h3, h4 { margin-bottom: 1rem; font-size: 1.5rem; }
p { color: var(--text-muted); }

/* Research Items */
.research-item {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.research-item:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
    box-shadow: 0 10px 40px -10px rgba(0,0,0,0.5);
}

.research-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
    position: relative;
}

.research-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.research-item:hover .research-image img {
    transform: scale(1.1);
}

.research-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0.4rem 0.8rem;
    background: rgba(2, 6, 23, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid var(--primary);
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--secondary);
    z-index: 10;
}

.research-content {
    padding: 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.research-content h3 {
    margin-bottom: 0;
    font-size: 1.5rem;
    color: white;
    line-height: 1.3;
}

.research-content p {
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 0;
    font-size: 0.95rem;
}

.research-topics {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.topic-tag {
    padding: 0.35rem 0.75rem;
    background: rgba(99, 102, 241, 0.1);
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: 6px;
    font-size: 0.8rem;
    color: var(--secondary);
    font-weight: 500;
    transition: all 0.2s ease;
}

.research-item:hover .topic-tag {
    background: rgba(99, 102, 241, 0.15);
    border-color: rgba(99, 102, 241, 0.4);
    transform: translateY(-1px);
}

.research-stats {
    display: flex;
    gap: 1.5rem;
    padding-top: 1rem;
    margin-top: auto;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.stat-item i {
    color: var(--primary);
    font-size: 0.9rem;
}

.stat-item span {
    font-weight: 500;
}

/* Research Queue List */
.research-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
}

.research-extended,
.research-advanced,
.research-emerging {
    padding: 6rem 0;
}

.research-extended .section-header,
.research-advanced .section-header,
.research-emerging .section-header {
    margin-bottom: 4rem;
}

.research-paper {
    background: var(--card-bg);
    border: 1px solid var(--border);
    padding: 2rem;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.paper-header {
    display: flex;
    justify-content: space-between;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--secondary);
    font-weight: 600;
}

.paper-meta {
    display: flex;
    justify-content: space-between;
    padding-top: 1rem;
    border-top: 1px solid var(--border);
    color: var(--text-muted);
    font-size: 0.9rem;
}

.research-queue {
    padding: 6rem 0;
}

.community {
    padding: 6rem 0;
    position: relative;
}

.community-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 2.5rem;
    align-items: center;
}

.section-header-left {
    text-align: left;
    margin-bottom: 2rem;
}

.community-left {
    display: grid;
    gap: 1.25rem;
}

.community-headline {
    font-size: 2.1rem;
    line-height: 1.25;
}

.community-copy {
    color: var(--text-muted);
    line-height: 1.7;
}

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

.community-right {
    display: grid;
    gap: 1.5rem;
}

.glow-orb {
    position: relative;
    width: 260px;
    height: 260px;
    margin: 0 auto;
}

.glow-ring {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.18) 0%, transparent 60%);
    filter: blur(30px);
    opacity: 0.9;
}

.glow-core {
    position: absolute;
    inset: 30px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(10, 14, 34, 0.8);
    box-shadow: 0 0 40px rgba(99, 102, 241, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(12px);
}

.glow-core i {
    font-size: 3rem;
    color: var(--text-main);
}

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

.pillar-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    padding: 1.25rem;
    display: grid;
    gap: 0.45rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px -20px rgba(0,0,0,0.6);
}

.pillar-card:hover {
    border-color: var(--primary);
    transform: translateY(-3px);
}

.pillar-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary);
    font-size: 1.15rem;
}

.pillar-card h4 {
    margin: 0;
}

.pillar-card p {
    margin: 0;
    color: var(--text-muted);
    line-height: 1.5;
}

@media (max-width: 1024px) {
    .community-grid {
        grid-template-columns: 1fr;
    }
}

.queue-layout {
    display: grid;
    gap: 2.5rem;
}

.queue-steps {
    display: grid;
    grid-template-columns: repeat(3, minmax(220px, 1fr));
    gap: 1.25rem;
}

.step-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 1.5rem;
    display: grid;
    gap: 0.65rem;
    transition: all 0.3s ease;
}

.step-card:hover {
    border-color: var(--primary);
    transform: translateY(-4px);
    box-shadow: 0 16px 40px -20px rgba(0, 0, 0, 0.6);
}

.step-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary);
    font-size: 1.2rem;
}

.step-meta {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.meta-chip {
    padding: 0.3rem 0.7rem;
    border-radius: 999px;
    border: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.04);
    color: var(--text-muted);
    font-size: 0.85rem;
}

.mission {
    padding: 6rem 0;
}

.mission-hero {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 2.5rem;
    align-items: center;
    margin-bottom: 3rem;
}

.mission-hero-left {
    display: grid;
    gap: 1.25rem;
}

.mission-headline {
    font-size: 2.2rem;
    line-height: 1.2;
}

.mission-copy {
    color: var(--text-muted);
    line-height: 1.7;
}

.mission-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
}

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

.mission-hero-right {
    display: grid;
    gap: 1.5rem;
    justify-items: center;
}

.mission-orb {
    position: relative;
    width: 260px;
    height: 260px;
}

.mission-ring {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.2) 0%, transparent 65%);
    filter: blur(32px);
    opacity: 0.9;
}

.mission-core {
    position: absolute;
    inset: 36px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(10, 14, 34, 0.85);
    box-shadow: 0 0 50px rgba(99, 102, 241, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(12px);
}

.mission-core i {
    font-size: 3rem;
    color: var(--text-main);
}

.mission-legends {
    display: grid;
    gap: 0.45rem;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    color: var(--text-muted);
}

.legend-item i {
    color: var(--secondary);
}

.mission-section-title {
    margin-bottom: 1.25rem;
}

.mission-approach {
    margin-top: 3rem;
}

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

.approach-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    padding: 1.25rem;
    display: grid;
    gap: 0.4rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px -20px rgba(0,0,0,0.6);
}

.approach-card:hover {
    border-color: var(--primary);
    transform: translateY(-3px);
}

.approach-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary);
    font-size: 1.1rem;
}

.vision-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    align-items: stretch;
    margin-top: 2rem;
}

.vision-panel {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.12), rgba(6, 182, 212, 0.08));
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 1.75rem;
    display: grid;
    gap: 0.75rem;
    box-shadow: 0 15px 40px -22px rgba(0,0,0,0.7);
}

.vision-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.vision-chip {
    padding: 0.45rem 0.85rem;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-main);
    font-weight: 600;
}

.vision-cta .btn { width: fit-content; }

.vision-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.vision-orbits {
    position: relative;
    width: 260px;
    height: 260px;
}

.vision-orbit {
    position: absolute;
    inset: 20px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    animation: spin 14s linear infinite;
}

.vision-orbit:nth-child(2) {
    inset: 40px;
    animation-duration: 18s;
}

.vision-orbit:nth-child(3) {
    inset: 60px;
    animation-duration: 22s;
}

.vision-node {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--secondary);
    position: absolute;
    top: -7px;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 0 0 12px rgba(6, 182, 212, 0.6);
}

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

.community {
    padding: 6rem 0;
    position: relative;
}

.roadmap {
    padding: 6rem 0;
}

.roadmap-hero {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 2.5rem;
    align-items: center;
    margin-bottom: 3rem;
}

.roadmap-left {
    display: grid;
    gap: 1.25rem;
}

.roadmap-headline {
    font-size: 2.1rem;
    line-height: 1.25;
}

.roadmap-copy {
    color: var(--text-muted);
    line-height: 1.7;
}

.roadmap-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
}

.roadmap-right {
    display: grid;
    gap: 1.5rem;
    justify-items: center;
}

.roadmap-orb {
    position: relative;
    width: 240px;
    height: 240px;
}

.roadmap-ring {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.2) 0%, transparent 65%);
    filter: blur(28px);
    opacity: 0.9;
}

.roadmap-core {
    position: absolute;
    inset: 32px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(10, 14, 34, 0.85);
    box-shadow: 0 0 45px rgba(99, 102, 241, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
}

.roadmap-core i {
    font-size: 2.6rem;
    color: var(--text-main);
}

.roadmap-legends {
    display: grid;
    gap: 0.45rem;
}

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

.roadmap-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 1.75rem;
    display: grid;
    gap: 0.9rem;
    box-shadow: 0 12px 40px -20px rgba(0, 0, 0, 0.7);
    transition: all 0.3s ease;
}

.roadmap-card:hover {
    border-color: var(--primary);
    transform: translateY(-4px);
}

.roadmap-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
}

.roadmap-badge {
    display: inline-flex;
    padding: 0.4rem 0.8rem;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-main);
    font-weight: 700;
    font-size: 0.9rem;
}

.roadmap-tag {
    padding: 0.35rem 0.7rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: var(--text-muted);
    font-size: 0.85rem;
}

.roadmap-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 0.4rem;
    color: var(--text-muted);
}

.roadmap-legends .legend-item {
    color: var(--text-muted);
}

@media (max-width: 1024px) {
    .roadmap-hero {
        grid-template-columns: 1fr;
    }
}
.library-section {
    padding: 6rem 0;
}

.library-hero {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 2rem;
    align-items: stretch;
    margin-bottom: 3rem;
}

.library-hero-title {
    font-size: 2rem;
    margin-bottom: 0.75rem;
}

.library-hero-description {
    font-size: 1.05rem;
    color: var(--text-muted);
    margin-bottom: 1.25rem;
    line-height: 1.7;
}

.badge-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin-bottom: 1.5rem;
}

.badge {
    padding: 0.4rem 0.85rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.04);
    color: var(--text-muted);
    font-weight: 600;
    font-size: 0.9rem;
}

.library-right {
    display: flex;
    align-items: stretch;
}

.vault-card {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.12), rgba(6, 182, 212, 0.08));
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 1.75rem;
    display: grid;
    gap: 0.8rem;
    box-shadow: 0 15px 50px -20px rgba(0, 0, 0, 0.6);
}

.vault-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--secondary);
}

.vault-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 0.35rem;
    color: var(--text-muted);
}

.library-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    align-items: start;
}

.library-column {
    display: grid;
    gap: 1rem;
}

.access-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 1.75rem;
    display: grid;
    gap: 0.85rem;
}

.access-icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary);
    font-size: 1.3rem;
}

.access-metrics {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.metric-chip {
    padding: 0.35rem 0.75rem;
    border-radius: 8px;
    border: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.04);
    color: var(--text-muted);
    font-weight: 600;
    font-size: 0.9rem;
}

.access-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 0.4rem;
    color: var(--text-muted);
}

.cta-card {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.6), rgba(6, 182, 212, 0.6));
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    padding: 1.75rem;
    color: white;
    display: grid;
    gap: 0.75rem;
    box-shadow: 0 20px 50px -20px rgba(0, 0, 0, 0.7);
}

.cta-card .btn-secondary {
    background: rgba(255, 255, 255, 0.18);
    border-color: rgba(255, 255, 255, 0.3);
}

@media (max-width: 1024px) {
    .library-hero {
        grid-template-columns: 1fr;
    }
}

.queue-board {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 1.75rem;
    display: grid;
    gap: 1.25rem;
    box-shadow: 0 10px 40px -18px rgba(0, 0, 0, 0.6);
}

.board-header h3 { margin-bottom: 0.35rem; }
.board-header p { margin: 0; color: var(--text-muted); }

.queue-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.stat-chip {
    padding: 0.4rem 0.8rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.04);
    color: var(--text-muted);
    font-size: 0.85rem;
}

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

.board-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 1.25rem;
    display: grid;
    gap: 0.5rem;
}

.board-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary);
    font-size: 1rem;
}

.status-badge {
    padding: 0.25rem 0.75rem;
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.status-badge.submitted { background: rgba(99, 102, 241, 0.15); color: #a5b4fc; }
.status-badge.processing { background: rgba(6, 182, 212, 0.15); color: #67e8f9; }
.status-badge.review { background: rgba(234, 179, 8, 0.15); color: #facc15; }
.status-badge.published { background: rgba(74, 222, 128, 0.15); color: #86efac; }

.research-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

@media (max-width: 1080px) {
    .queue-steps {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    }
}

/* Get Involved / Social CTA */
.get-involved {
    background: linear-gradient(180deg, rgba(8, 12, 32, 0.95) 0%, rgba(2, 6, 23, 0.92) 100%);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.get-involved .section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.get-involved .social-grid {
    margin-top: 1rem;
}

/* Footer */
.footer {
    border-top: 1px solid var(--border);
    padding: 5rem 0 3rem;
    background: linear-gradient(180deg, rgba(10, 14, 34, 0.95) 0%, rgba(4, 6, 20, 0.98) 100%);
    box-shadow: 0 -20px 60px -40px rgba(0, 0, 0, 0.8);
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.footer-section h4 {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.footer-logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.footer-logo i { color: var(--primary); }

.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 0.5rem;
}

.footer-link {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    color: var(--text-muted);
    text-decoration: none;
    padding: 0.35rem 0;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.footer-link i {
    width: 20px;
    text-align: center;
    color: var(--secondary);
    opacity: 0.9;
}

.footer-link:hover {
    color: white;
    transform: translateX(4px);
}

.footer-bottom {
    margin-top: 3rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--text-muted);
}

/* Responsive */
@media (max-width: 968px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-visual {
        margin-top: 4rem;
    }
    
    .hero-title { font-size: 3.5rem; }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
}

@media (max-width: 600px) {
    .hero-title { font-size: 2.5rem; }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .visual-circle {
        width: 300px;
        height: 300px;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
}

/* Sidebar (Hidden by default) */
.sidebar {
    position: fixed;
    top: 0;
    right: -320px;
    width: 320px;
    height: 100vh;
    background: rgba(2, 6, 23, 0.95);
    backdrop-filter: blur(20px);
    border-left: 1px solid var(--border);
    z-index: 2000;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.5);
}

.sidebar.active { right: 0; }

.sidebar-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    z-index: 1999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.sidebar-overlay.active {
    opacity: 1;
    visibility: visible;
}

.sidebar-content {
    height: 100%;
    overflow-y: auto;
    padding: 2rem;
    display: flex;
    flex-direction: column;
}

.sidebar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border);
}

.sidebar-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.25rem;
    color: white;
}

.sidebar-logo i { color: var(--primary); }

.close-sidebar {
    cursor: pointer;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-muted);
    transition: all 0.2s ease;
}

.close-sidebar:hover {
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

.nav-group { margin-bottom: 2rem; }

.nav-group-title {
    color: var(--text-muted);
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 1rem;
    padding-left: 0.75rem;
}

.nav-list {
    list-style: none;
    padding: 0;
}

.nav-list li { margin-bottom: 0.25rem; }

.nav-list a {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem;
    border-radius: 8px;
    color: var(--text-main);
    text-decoration: none;
    transition: all 0.2s ease;
    border: 1px solid transparent;
}

.nav-list a:hover {
    background: rgba(99, 102, 241, 0.1);
    color: white;
    border-color: rgba(99, 102, 241, 0.2);
    transform: translateX(4px);
}

.nav-list i {
    width: 20px;
    text-align: center;
    color: var(--primary);
    font-size: 1rem;
    opacity: 0.8;
}

.nav-list a:hover i { opacity: 1; }

/* Access Pass Section */
.mission-overview {
    margin-bottom: 3rem;
}

.mission-hero-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: white;
}

.mission-hero-description {
    color: var(--text-muted);
    margin-bottom: 2rem;
    max-width: 800px;
}

.mission-section-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: white;
}

.card-details {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.detail-item i {
    color: var(--secondary);
}

.research-cta {
    margin-top: 3rem;
}

/* Research Index */
.research-index {
    padding-top: 120px;
    padding-bottom: 4rem;
}

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

.index-title {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.index-subtitle {
    color: var(--text-muted);
    font-size: 1.1rem;
}

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

.index-group-title {
    font-size: 1.25rem;
    color: var(--secondary);
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.index-list {
    list-style: none;
    padding: 0;
}

.index-list li {
    margin-bottom: 0.5rem;
}

.index-list a {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid transparent;
    border-radius: 8px;
    color: var(--text-muted);
    text-decoration: none;
    transition: all 0.3s ease;
}

.index-list a:hover {
    background: rgba(255, 255, 255, 0.08);
    color: white;
    border-color: rgba(99, 102, 241, 0.3);
    transform: translateX(5px);
}

.index-list i {
    width: 24px;
    text-align: center;
    color: var(--primary);
    font-size: 1.1rem;
    opacity: 0.7;
    transition: all 0.3s ease;
}

.index-list a:hover i {
    opacity: 1;
    transform: scale(1.1);
    color: var(--secondary);
}

/* Technology Sections */
.technology {
    padding-top: 120px;
}

.technology .section-header,
.technology-advanced .section-header,
.technology-emerging .section-header,
.technology-future .section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.tech-item {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 2rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 40px -10px rgba(0, 0, 0, 0.4);
}

.tech-item:hover {
    border-color: var(--primary);
    transform: translateY(-6px);
    box-shadow: 0 20px 60px -20px rgba(0, 0, 0, 0.6);
}

.tech-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--secondary);
    font-size: 1.5rem;
}

.tech-item h3 {
    margin: 0;
    font-size: 1.35rem;
}

.tech-item p {
    margin: 0;
    color: var(--text-muted);
    line-height: 1.7;
}

.tech-specs {
    margin-top: 1rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 0.75rem;
}

.spec {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 1rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 10px;
}

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

.spec-value {
    color: white;
    font-weight: 700;
    font-size: 0.95rem;
}

.technology-preview {
    margin-top: 3rem;
}

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

.technology-preview-item {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 1.75rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    transition: all 0.3s ease;
}

.technology-preview-item:hover {
    border-color: var(--primary);
    transform: translateY(-4px);
}

.technology-cta {
    margin-top: 2.5rem;
    text-align: center;
}

.technology-cta .cta-subtitle {
    margin-top: 1rem;
    color: var(--text-muted);
}

/* KEYFI Offer Section */
.keyfi-offer {
    background: linear-gradient(135deg, rgba(2, 6, 23, 0.95), rgba(99, 102, 241, 0.1));
    border-top: 1px solid var(--border);
}

.offer-wrapper {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
    align-items: center;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 3rem;
    position: relative;
    overflow: hidden;
}

.offer-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.2) 0%, transparent 70%);
    filter: blur(50px);
    z-index: 0;
}

.offer-content {
    position: relative;
    z-index: 1;
}

.offer-badge {
    display: inline-block;
    padding: 0.4rem 0.8rem;
    background: rgba(234, 179, 8, 0.15); /* Yellow/Gold tint */
    border: 1px solid rgba(234, 179, 8, 0.3);
    color: #facc15;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.offer-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.offer-text {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
    max-width: 500px;
}

.offer-visual {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.offer-icon {
    font-size: 5rem;
    color: var(--secondary);
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 0 20px rgba(6, 182, 212, 0.3));
    animation: float 6s ease-in-out infinite;
}

.offer-tokens {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    background: rgba(0, 0, 0, 0.4);
    padding: 1rem 2rem;
    border-radius: 12px;
    border: 1px solid var(--border);
}

.token-from { color: #facc15; } /* Yellow for KEYFI */
.token-to { color: var(--primary); } /* Indigo for ELUSIV */

/* Offer Page */
.page-header {
    padding-top: 140px;
    padding-bottom: 4rem;
    text-align: center;
    background: radial-gradient(circle at top center, rgba(99, 102, 241, 0.15) 0%, transparent 50%);
}

.page-title {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.page-subtitle {
    font-size: 1.25rem;
    color: var(--text-muted);
}

.offer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: start;
}

.offer-main {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 3rem;
}

.offer-main h2 { margin-bottom: 1.5rem; font-size: 2rem; }
.offer-main p.lead { font-size: 1.2rem; color: #fff; margin-bottom: 1.5rem; }
.offer-main p { margin-bottom: 2rem; }

.steps-container {
    margin: 3rem 0;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 16px;
    border: 1px solid var(--border);
}

.step-item {
    display: flex;
    gap: 1.5rem;
    margin-top: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.step-item:last-child { border-bottom: none; padding-bottom: 0; }

.step-number {
    width: 40px;
    height: 40px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
    box-shadow: 0 0 15px var(--primary-glow);
}

.step-content h4 { font-size: 1.2rem; margin-bottom: 0.5rem; color: white; }
.step-content p { font-size: 0.95rem; margin-bottom: 0; }

.cta-box {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(6, 182, 212, 0.1) 100%);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid var(--primary);
    text-align: center;
}

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

.offer-sidebar {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.info-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 2rem;
}

.utility-list { list-style: none; margin-top: 1.5rem; }
.utility-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    color: var(--text-muted);
}

.utility-list i { color: var(--secondary); width: 20px; text-align: center; }

/* Tokenomics Page */
.tokenomics-overview {
    padding: 6rem 0;
}

.tokenomics-tags {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-top: 1.5rem;
}

.tokenomics-tags .tag {
    padding: 0.4rem 0.9rem;
    border-radius: 999px;
    border: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.04);
    color: var(--text-muted);
    font-size: 0.9rem;
}

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

.overview-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 2rem;
    display: grid;
    gap: 1rem;
}

.overview-card ul { padding-left: 1.1rem; color: var(--text-muted); }
.overview-card li { margin-bottom: 0.4rem; }

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

.stat-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 1.25rem 1.5rem;
    display: grid;
    gap: 0.35rem;
}

.stat-label { color: var(--text-muted); font-size: 0.9rem; }
.stat-value { color: white; font-weight: 700; font-size: 1.1rem; }

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

.utility-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 1.75rem;
    display: grid;
    gap: 0.75rem;
    transition: all 0.3s ease;
}

.utility-card:hover {
    border-color: var(--primary);
    transform: translateY(-4px);
}

.utility-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--secondary);
    font-size: 1.25rem;
}

.allocation-grid, .demand-grid, .faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1rem;
}

.allocation-card, .demand-card, .faq-item {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 1.5rem;
    display: grid;
    gap: 0.6rem;
}

.allocation-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.allocation-label { color: var(--text-muted); }
.allocation-value { color: white; font-weight: 700; }

.faq-item h4 { margin: 0; }

.token-cta {
    text-align: center;
    margin-top: 2rem;
}

@media (max-width: 768px) {
    .tokenomics-tags { justify-content: center; }
    .allocation-top { flex-direction: column; align-items: flex-start; }
    .cta-buttons { flex-direction: column; }
}

/* Socials Section */
.socials {
    background: linear-gradient(180deg, rgba(2, 6, 23, 0.9) 0%, rgba(15, 23, 42, 0.95) 100%);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

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

.social-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    padding: 1.75rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px -12px rgba(0, 0, 0, 0.5);
}

.social-card:hover {
    border-color: var(--primary);
    transform: translateY(-4px);
    box-shadow: 0 16px 40px -18px rgba(0, 0, 0, 0.6);
}

.social-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--secondary);
    font-size: 1.4rem;
}

.social-card h3 {
    margin: 0.25rem 0;
}

.social-card p {
    margin: 0;
}

.social-card .btn {
    margin-top: 0.5rem;
    width: fit-content;
}

@media (max-width: 768px) {
    .social-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 968px) {
    .offer-wrapper, .offer-grid { grid-template-columns: 1fr; }
    .offer-wrapper { text-align: center; }
    .offer-text { margin-left: auto; margin-right: auto; }
    .cta-buttons { flex-direction: column; }
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}
