/* ============================================
   $DISS / DISSENSUS — Landing Page Styles
   ============================================ */

/* === RESET & BASE === */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg-primary: #000000;
    --bg-secondary: #0a0a0f;
    --bg-card: #111118;
    --bg-card-hover: #16161f;
    --red: #FF3B3B;
    --red-glow: rgba(255, 59, 59, 0.3);
    --green: #00FF88;
    --green-glow: rgba(0, 255, 136, 0.3);
    --cyan: #00D4FF;
    --cyan-glow: rgba(0, 212, 255, 0.3);
    --purple: #8B5CF6;
    --purple-glow: rgba(139, 92, 246, 0.3);
    --white: #FFFFFF;
    --gray-100: #F1F1F1;
    --gray-300: #A0A0B0;
    --gray-500: #6B6B80;
    --gray-700: #2A2A3A;
    --gray-900: #111118;
    --font-main: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-mono: 'JetBrains Mono', 'Fira Code', monospace;
}

html {
    scroll-behavior: smooth;
    min-height: 100%;
}

body {
    font-family: var(--font-main);
    background: var(--bg-primary);
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
    position: relative;
}

a {
    color: var(--cyan);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: var(--green);
    text-shadow: 0 0 10px var(--green-glow);
}

/* === ANIMATED BACKGROUND === */
.bg-grid {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
    background-size: 60px 60px;
    z-index: 0;
    pointer-events: none;
    animation: gridShift 20s linear infinite;
    transform: translateZ(0);
    backface-visibility: hidden;
}

@keyframes gridShift {
    0% { background-position: 0 0; }
    100% { background-position: 60px 60px; }
}

/* Gradient mesh overlay - animated */
.bg-gradient-mesh {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(ellipse 80% 50% at 20% 20%, rgba(139, 92, 246, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse 60% 40% at 80% 10%, rgba(0, 212, 255, 0.06) 0%, transparent 50%),
        radial-gradient(ellipse 70% 50% at 50% 90%, rgba(0, 255, 136, 0.05) 0%, transparent 50%);
    z-index: 0;
    pointer-events: none;
    animation: gradientMesh 15s ease-in-out infinite alternate;
    transform: translateZ(0);
    backface-visibility: hidden;
}

@keyframes gradientMesh {
    0% { opacity: 0.8; }
    100% { opacity: 1; }
}

/* === NAVIGATION === */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.4rem;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.nav-logo .diss {
    color: var(--purple);
    text-shadow: 0 0 20px var(--purple-glow);
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
    align-items: center;
}

.nav-links a {
    color: var(--gray-300);
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.3s;
}

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

/* Mobile Menu Toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    width: 44px;
    height: 44px;
    background: transparent;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 8px;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
    transition: all 0.3s ease;
}
.nav-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: all 0.3s ease;
}
.nav-toggle.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}
.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}
.nav-toggle.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}
.nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.7);
    z-index: 999;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.nav-overlay.visible {
    opacity: 1;
}

.btn-buy {
    background: linear-gradient(135deg, var(--purple), var(--cyan));
    color: var(--white) !important;
    padding: 0.6rem 1.5rem;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-buy:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(139, 92, 246, 0.4);
    text-shadow: none;
}

/* Launch App button — Nav */
.btn-launch {
    background: linear-gradient(135deg, #00FF88, #00D4FF);
    color: #0A0A0F !important;
    padding: 0.6rem 1.5rem;
    border-radius: 8px;
    font-weight: 800;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-shadow: none !important;
    animation: launchPulse 2s ease-in-out infinite;
}

.btn-launch:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 255, 136, 0.4);
    color: #0A0A0F !important;
    text-shadow: none !important;
}

/* Launch App button — Hero & CTA (larger) */
.btn-launch-hero {
    background: linear-gradient(135deg, #00FF88, #00D4FF);
    color: #0A0A0F;
    padding: 1rem 2.5rem;
    border-radius: 12px;
    font-weight: 800;
    font-size: 1.1rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-shadow: none;
    animation: launchPulse 2s ease-in-out infinite;
    position: relative;
}

.btn-launch-hero:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(0, 255, 136, 0.5), 0 0 60px rgba(0, 212, 255, 0.2);
    color: #0A0A0F;
    text-shadow: none;
}

@keyframes launchPulse {
    0%, 100% { box-shadow: 0 0 15px rgba(0, 255, 136, 0.2); }
    50% { box-shadow: 0 0 25px rgba(0, 255, 136, 0.4), 0 0 50px rgba(0, 212, 255, 0.15); }
}

/* === HERO SECTION === */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 8rem 2rem 4rem;
    z-index: 1;
}

.hero-glow {
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    filter: blur(150px);
    opacity: 0.15;
    z-index: 0;
    will-change: transform;
}

.hero-glow.red { 
    background: var(--red); 
    top: 10%; 
    left: 10%;
    animation: glowFloat 8s ease-in-out infinite;
}
.hero-glow.green { 
    background: var(--green); 
    top: 5%; 
    right: 10%;
    animation: glowFloat 10s ease-in-out infinite 1s;
}
.hero-glow.cyan { 
    background: var(--cyan); 
    bottom: 10%; 
    left: 50%;
    transform: translateX(-50%);
    animation: glowFloat 12s ease-in-out infinite 2s;
}

@keyframes glowFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(20px, -30px) scale(1.05); }
    50% { transform: translate(-15px, 20px) scale(0.95); }
    75% { transform: translate(25px, 15px) scale(1.02); }
}

.hero-glow.cyan { 
    animation: glowFloatCyan 12s ease-in-out infinite 2s;
}
@keyframes glowFloatCyan {
    0%, 100% { transform: translateX(-50%) translateY(0) scale(1); }
    25% { transform: translateX(-50%) translateY(-25px) scale(1.05); }
    50% { transform: translateX(-50%) translateY(15px) scale(0.95); }
    75% { transform: translateX(-50%) translateY(-10px) scale(1.02); }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(139, 92, 246, 0.1);
    border: 1px solid rgba(139, 92, 246, 0.3);
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    font-size: 0.85rem;
    color: var(--purple);
    margin-bottom: 2rem;
    z-index: 1;
    animation: pulse-border 3s ease-in-out infinite;
}

@keyframes pulse-border {
    0%, 100% { border-color: rgba(139, 92, 246, 0.3); }
    50% { border-color: rgba(139, 92, 246, 0.7); }
}

.hero-title {
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 900;
    letter-spacing: -0.03em;
    line-height: 1.05;
    margin-bottom: 0.5rem;
    z-index: 1;
}

.hero-title .ticker {
    background: linear-gradient(135deg, var(--purple), var(--cyan), var(--green));
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 4s ease-in-out infinite;
}
@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2.5vw, 1.5rem);
    color: var(--gray-300);
    margin-bottom: 1rem;
    z-index: 1;
    font-weight: 400;
}

.hero-tagline {
    font-size: 1.1rem;
    color: var(--gray-500);
    margin-bottom: 3rem;
    z-index: 1;
    font-style: italic;
}

.hero-agents {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
    z-index: 1;
    flex-wrap: wrap;
    justify-content: center;
}

.agent-chip {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    border: 1px solid;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.agent-chip.cipher {
    color: var(--red);
    border-color: rgba(255, 59, 59, 0.3);
    background: rgba(255, 59, 59, 0.05);
}
.agent-chip.cipher:hover {
    transform: scale(1.08);
    box-shadow: 0 0 25px var(--red-glow);
    border-color: rgba(255, 59, 59, 0.6);
    background: rgba(255, 59, 59, 0.12);
}

.agent-chip.nova {
    color: var(--green);
    border-color: rgba(0, 255, 136, 0.3);
    background: rgba(0, 255, 136, 0.05);
}
.agent-chip.nova:hover {
    transform: scale(1.08);
    box-shadow: 0 0 25px var(--green-glow);
    border-color: rgba(0, 255, 136, 0.6);
    background: rgba(0, 255, 136, 0.12);
}

.agent-chip.prism {
    color: var(--cyan);
    border-color: rgba(0, 212, 255, 0.3);
    background: rgba(0, 212, 255, 0.05);
}
.agent-chip.prism:hover {
    transform: scale(1.08);
    box-shadow: 0 0 25px var(--cyan-glow);
    border-color: rgba(0, 212, 255, 0.6);
    background: rgba(0, 212, 255, 0.12);
}

.hero-cta {
    display: flex;
    gap: 1rem;
    z-index: 1;
    flex-wrap: wrap;
    justify-content: center;
}

.btn-primary {
    background: linear-gradient(135deg, var(--purple), var(--cyan));
    color: var(--white);
    padding: 1rem 2.5rem;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.1rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(139, 92, 246, 0.4);
    color: var(--white);
    text-shadow: none;
}
.btn-primary:active, .btn-secondary:active, .btn-launch-hero:active {
    transform: translateY(-1px) scale(0.98);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    padding: 1rem 2.5rem;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.1rem;
    border: 1px solid var(--gray-700);
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-secondary:hover {
    border-color: var(--purple);
    background: rgba(139, 92, 246, 0.1);
    color: var(--white);
    text-shadow: none;
}

/* === SECTIONS COMMON === */
section {
    position: relative;
    z-index: 1;
    padding: 6rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.section-label {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--purple);
    margin-bottom: 1rem;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 1.5rem;
    line-height: 1.15;
}

.section-desc {
    font-size: 1.1rem;
    color: var(--gray-300);
    max-width: 700px;
    margin-bottom: 3rem;
}

/* === WHAT IS SECTION === */
.what-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.5rem;
    perspective: 1000px;
}

.what-card {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    transform-style: preserve-3d;
}

.what-card:hover {
    background: var(--bg-card-hover);
    border-color: rgba(139, 92, 246, 0.2);
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 30px rgba(139, 92, 246, 0.15);
}

.what-card .icon {
    margin-bottom: 1.25rem;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(139, 92, 246, 0.08);
    border: 1px solid rgba(139, 92, 246, 0.15);
    border-radius: 14px;
    transition: all 0.3s ease;
}

.what-card:hover .icon {
    background: rgba(139, 92, 246, 0.15);
    border-color: rgba(139, 92, 246, 0.3);
    box-shadow: 0 0 20px rgba(139, 92, 246, 0.15);
    transform: scale(1.05);
}

.what-card .icon svg {
    width: 32px;
    height: 32px;
}

.what-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.what-card p {
    color: var(--gray-300);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* === AGENTS SECTION === */
.agents-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    perspective: 1200px;
}

.agent-card {
    background: var(--bg-card);
    border: 1px solid;
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
    transform-style: preserve-3d;
}

.agent-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
}

.agent-card.cipher {
    border-color: rgba(255, 59, 59, 0.15);
}
.agent-card.cipher::before { background: var(--red); }
.agent-card.cipher:hover {
    border-color: rgba(255, 59, 59, 0.4);
    box-shadow: 0 0 40px rgba(255, 59, 59, 0.2), 0 25px 50px rgba(0, 0, 0, 0.3);
    transform: translateY(-6px) scale(1.02);
}

.agent-card.nova {
    border-color: rgba(0, 255, 136, 0.15);
}
.agent-card.nova::before { background: var(--green); }
.agent-card.nova:hover {
    border-color: rgba(0, 255, 136, 0.4);
    box-shadow: 0 0 40px rgba(0, 255, 136, 0.2), 0 25px 50px rgba(0, 0, 0, 0.3);
    transform: translateY(-6px) scale(1.02);
}

.agent-card.prism {
    border-color: rgba(0, 212, 255, 0.15);
}
.agent-card.prism::before { background: var(--cyan); }
.agent-card.prism:hover {
    border-color: rgba(0, 212, 255, 0.4);
    box-shadow: 0 0 40px rgba(0, 212, 255, 0.2), 0 25px 50px rgba(0, 0, 0, 0.3);
    transform: translateY(-6px) scale(1.02);
}

/* Agent Portrait Styling */
.agent-portrait-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 1.2rem;
}

.agent-portrait {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid rgba(255, 255, 255, 0.15);
    transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
}

.agent-card.cipher .agent-portrait {
    border-color: var(--red);
    box-shadow: 0 0 20px rgba(255, 59, 59, 0.25), 0 8px 24px rgba(0, 0, 0, 0.4);
}

.agent-card.cipher:hover .agent-portrait {
    transform: scale(1.08) translateY(-4px);
    box-shadow: 0 0 35px rgba(255, 59, 59, 0.45), 0 12px 32px rgba(0, 0, 0, 0.5);
    border-color: #ff5555;
}

.agent-card.nova .agent-portrait {
    border-color: var(--green);
    box-shadow: 0 0 20px rgba(0, 255, 136, 0.25), 0 8px 24px rgba(0, 0, 0, 0.4);
}

.agent-card.nova:hover .agent-portrait {
    transform: scale(1.08) translateY(-4px);
    box-shadow: 0 0 35px rgba(0, 255, 136, 0.45), 0 12px 32px rgba(0, 0, 0, 0.5);
    border-color: #33ff99;
}

.agent-card.prism .agent-portrait {
    border-color: var(--cyan);
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.25), 0 8px 24px rgba(0, 0, 0, 0.4);
}

.agent-card.prism:hover .agent-portrait {
    transform: scale(1.08) translateY(-4px);
    box-shadow: 0 0 35px rgba(0, 212, 255, 0.45), 0 12px 32px rgba(0, 0, 0, 0.5);
    border-color: #33ddff;
}

/* Legacy fallback */
.agent-card .agent-icon {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.agent-card h3 {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 0.3rem;
}

.agent-card .agent-role {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
}

.agent-card.cipher .agent-role { color: var(--red); }
.agent-card.nova .agent-role { color: var(--green); }
.agent-card.prism .agent-role { color: var(--cyan); }

.agent-card .agent-desc {
    color: var(--gray-300);
    font-size: 0.95rem;
    line-height: 1.7;
}

.agent-card .agent-quote {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    font-style: italic;
    font-size: 0.9rem;
    color: var(--gray-500);
}

/* === HOW IT WORKS === */
.phases {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
}

.phase-card {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    position: relative;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.phase-card:hover {
    transform: translateY(-6px);
    border-color: rgba(139, 92, 246, 0.3);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3), 0 0 20px rgba(139, 92, 246, 0.1);
}

.phase-card:hover .phase-number {
    transform: scale(1.1);
    box-shadow: 0 0 25px rgba(139, 92, 246, 0.4);
}

.phase-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--purple), var(--cyan));
    font-weight: 800;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.phase-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.phase-card p {
    color: var(--gray-300);
    font-size: 0.9rem;
}

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

.token-card {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.token-card:hover {
    border-color: rgba(139, 92, 246, 0.2);
    transform: translateY(-2px);
}

.token-card .token-value {
    font-size: 2.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--purple), var(--cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.token-card h3 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--gray-300);
    margin-bottom: 0.5rem;
}

.token-card p {
    color: var(--gray-500);
    font-size: 0.85rem;
}

/* === UTILITY EVOLUTION === */
.evolution {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.evo-card {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 2rem;
    position: relative;
    transition: all 0.3s ease;
}

.evo-card:hover {
    border-color: rgba(139, 92, 246, 0.3);
    transform: translateY(-4px);
}

.evo-card .evo-phase {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--purple);
    margin-bottom: 0.75rem;
}

.evo-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.evo-card ul {
    list-style: none;
    padding: 0;
}

.evo-card ul li {
    color: var(--gray-300);
    font-size: 0.9rem;
    padding: 0.3rem 0;
    padding-left: 1.2rem;
    position: relative;
}

.evo-card ul li::before {
    content: '⚡';
    position: absolute;
    left: 0;
    font-size: 0.7rem;
}

/* === PLATFORM UTILITY & STAKING === */
.text-link {
    color: var(--cyan);
    text-decoration: none;
    border-bottom: 1px solid rgba(0, 212, 255, 0.35);
    transition: border-color 0.2s, color 0.2s;
}
.text-link:hover {
    color: #7ee8ff;
    border-bottom-color: var(--cyan);
}

.utility-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.25rem;
    margin-top: 2rem;
}

.utility-card {
    background: var(--bg-card);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: 16px;
    padding: 1.35rem 1.5rem;
    position: relative;
    transition: border-color 0.25s, transform 0.25s;
}
.utility-card:hover {
    border-color: rgba(139, 92, 246, 0.45);
    transform: translateY(-2px);
}
.utility-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--white);
    margin: 0.5rem 0 0.65rem 0;
}
.utility-card p {
    font-size: 0.9rem;
    color: var(--gray-300);
    line-height: 1.55;
    margin: 0;
}

.utility-badge {
    display: inline-block;
    font-size: 0.65rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    padding: 0.25rem 0.55rem;
    border-radius: 6px;
    background: rgba(0, 255, 136, 0.15);
    color: var(--green);
    border: 1px solid rgba(0, 255, 136, 0.35);
}
.utility-badge-soon {
    background: rgba(251, 191, 36, 0.12);
    color: #fbbf24;
    border-color: rgba(251, 191, 36, 0.35);
}
.utility-badge-muted {
    background: rgba(255, 255, 255, 0.06);
    color: var(--gray-500);
    border-color: rgba(255, 255, 255, 0.1);
}

.utility-live { border-left: 3px solid var(--green); }
.utility-next { border-left: 3px solid #fbbf24; }
.utility-planned { border-left: 3px solid var(--gray-600); }

.utility-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin-top: 2.5rem;
}

.tier-table-wrap {
    overflow-x: auto;
    margin-top: 1.5rem;
    border-radius: 12px;
    border: 1px solid rgba(139, 92, 246, 0.2);
}
.tier-table {
    width: 100%;
    min-width: 560px;
    border-collapse: collapse;
    font-size: 0.9rem;
}
.tier-table th,
.tier-table td {
    padding: 0.85rem 1rem;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.tier-table th {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--gray-500);
    font-weight: 600;
    background: rgba(139, 92, 246, 0.06);
}
.tier-table tbody tr:hover {
    background: rgba(139, 92, 246, 0.05);
}
.tier-table td {
    color: var(--gray-300);
}

.tier-pill {
    display: inline-block;
    padding: 0.2rem 0.55rem;
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.06em;
}
.tier-pill-free { background: rgba(255,255,255,0.1); color: var(--gray-300); }
.tier-pill-bronze { background: rgba(205, 127, 50, 0.2); color: #daa06d; }
.tier-pill-silver { background: rgba(192, 192, 192, 0.15); color: #d4d4d8; }
.tier-pill-gold { background: rgba(255, 215, 0, 0.15); color: #fcd34d; }
.tier-pill-whale { background: rgba(139, 92, 246, 0.25); color: #c4b5fd; }

.staking-footnote {
    margin-top: 1.5rem;
    font-size: 0.85rem;
    color: var(--gray-500);
    line-height: 1.55;
    max-width: 52rem;
}
.staking-footnote code {
    font-family: var(--font-mono);
    font-size: 0.8rem;
    color: var(--cyan);
    background: rgba(0, 212, 255, 0.08);
    padding: 0.1rem 0.35rem;
    border-radius: 4px;
}

/* === ROADMAP === */
.roadmap {
    position: relative;
}

.roadmap-line {
    position: absolute;
    left: 24px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--purple), var(--cyan), var(--green));
    opacity: 0.3;
}

.roadmap-line-progress {
    position: absolute;
    left: 24px;
    top: 0;
    width: 2px;
    height: 0;
    background: linear-gradient(to bottom, var(--purple), var(--cyan), var(--green));
    transition: height 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
    z-index: 1;
}

.roadmap-item {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    position: relative;
}

.roadmap-dot {
    width: 50px;
    min-width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--bg-card);
    border: 2px solid var(--purple);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    z-index: 1;
}

.roadmap-dot.active {
    background: linear-gradient(135deg, var(--purple), var(--cyan));
    border-color: transparent;
}

.roadmap-content h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.roadmap-content .quarter {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--purple);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.5rem;
}

.roadmap-content p {
    color: var(--gray-300);
    font-size: 0.95rem;
}

/* === CTA SECTION === */
.cta-section {
    text-align: center;
    padding: 8rem 2rem;
    position: relative;
}

.cta-section .cta-glow {
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: var(--purple);
    filter: blur(200px);
    opacity: 0.1;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.cta-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    margin-bottom: 1.5rem;
    z-index: 1;
    position: relative;
}

.cta-desc {
    font-size: 1.2rem;
    color: var(--gray-300);
    margin-bottom: 2.5rem;
    z-index: 1;
    position: relative;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    z-index: 1;
    position: relative;
}

/* === FOOTER === */
.footer {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 3rem 2rem;
    text-align: center;
    position: relative;
    z-index: 1;
}

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

.footer-links a {
    color: var(--gray-500);
    font-size: 0.9rem;
}

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

.footer-copy {
    color: var(--gray-700);
    font-size: 0.8rem;
}

/* === CONTRACT ADDRESS BAR === */
.contract-bar {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 0.75rem 1.5rem;
    margin-top: 2rem;
    z-index: 1;
    font-family: var(--font-mono);
    font-size: 0.8rem;
    color: var(--gray-300);
    cursor: pointer;
    transition: all 0.3s ease;
}

.contract-bar:hover {
    border-color: var(--purple);
    background: rgba(139, 92, 246, 0.05);
}

.contract-bar .label {
    color: var(--gray-500);
    font-family: var(--font-main);
    font-weight: 600;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.contract-bar .copy-icon {
    color: var(--purple);
    cursor: pointer;
}

/* === ANIMATIONS === */
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.float-anim {
    animation: float 6s ease-in-out infinite;
}

@keyframes fade-in-up {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    opacity: 0;
    animation: fade-in-up 0.8s ease forwards;
}

.fade-in.d1 { animation-delay: 0.1s; }
.fade-in.d2 { animation-delay: 0.2s; }
.fade-in.d3 { animation-delay: 0.3s; }
.fade-in.d4 { animation-delay: 0.4s; }
.fade-in.d5 { animation-delay: 0.5s; }
.fade-in.d6 { animation-delay: 0.6s; }

/* === RESPONSIVE === */
@media (max-width: 768px) {
    .nav-toggle { display: flex; }
    
    .nav-links { 
        position: fixed;
        top: 0;
        right: -280px;
        width: 280px;
        height: 100vh;
        background: rgba(17, 17, 24, 0.98);
        backdrop-filter: blur(20px);
        border-left: 1px solid rgba(255,255,255,0.08);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 1.5rem;
        padding: 2rem;
        z-index: 1000;
        transition: right 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    }
    .nav-links.open {
        right: 0;
        box-shadow: -10px 0 40px rgba(0,0,0,0.5);
    }
    .nav-overlay { display: block; }
    
    .hero { padding: 6rem 1.5rem 3rem; }
    
    section { padding: 4rem 1.5rem; }
    
    .hero-agents { flex-direction: column; align-items: center; }
    
    .agents-grid { grid-template-columns: 1fr; }
    
    .phases { grid-template-columns: 1fr 1fr; }
    
    .roadmap-line { left: 24px; }
}

@media (max-width: 480px) {
    .phases { grid-template-columns: 1fr; }
    
    .hero-cta { flex-direction: column; width: 100%; }
    
    .btn-primary, .btn-secondary, .btn-launch-hero { width: 100%; justify-content: center; }
}

/* === REDUCED MOTION === */
/* === SCROLL ANIMATION CLASSES (replaces inline-style approach) === */
.anim-hidden {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.anim-visible {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

@media (prefers-reduced-motion: reduce) {
    .bg-grid, .hero-glow, .hero-title .ticker, .roadmap-line-progress { animation: none !important; }
    .fade-in { opacity: 1 !important; animation: none !important; }
    .what-card, .agent-card, .phase-card, .token-card, .evo-card { transition-duration: 0.1s; }
    .anim-hidden { opacity: 1 !important; transform: none !important; }
}

/* === SCROLLBAR === */
::-webkit-scrollbar {
    width: 8px;
}

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

::-webkit-scrollbar-thumb {
    background: var(--gray-700);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--gray-500);
}