/* Token Page Specific Styles */

/* Token Hero Section */
.token-hero {
    height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
    overflow: hidden;
    padding-top: 0;
    color: var(--neutral-white);
}

/* Tech Background Elements - Same as projects page */
.token-hero .tech-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.token-hero .grid-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        linear-gradient(rgba(0, 102, 255, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 102, 255, 0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: gridMove 20s linear infinite;
}

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

.token-hero .data-streams {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.token-hero .stream {
    position: absolute;
    width: 2px;
    height: 100px;
    background: linear-gradient(to bottom, transparent, var(--primary-blue), transparent);
    animation: streamFlow 3s linear infinite;
}

.token-hero .stream-1 {
    left: 20%;
    animation-delay: 0s;
}

.token-hero .stream-2 {
    left: 50%;
    animation-delay: 1s;
}

.token-hero .stream-3 {
    left: 80%;
    animation-delay: 2s;
}

@keyframes streamFlow {
    0% { transform: translateY(-100px); opacity: 0; }
    50% { opacity: 1; }
    100% { transform: translateY(calc(100vh + 100px)); opacity: 0; }
}

.token-hero .particles-container {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.token-hero .particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--accent-green);
    border-radius: 50%;
    animation: particleFloat 6s ease-in-out infinite;
}

.token-hero .particle:nth-child(1) { top: 20%; left: 10%; animation-delay: 0s; }
.token-hero .particle:nth-child(2) { top: 60%; left: 20%; animation-delay: 1s; }
.token-hero .particle:nth-child(3) { top: 30%; left: 70%; animation-delay: 2s; }
.token-hero .particle:nth-child(4) { top: 80%; left: 60%; animation-delay: 3s; }
.token-hero .particle:nth-child(5) { top: 40%; left: 90%; animation-delay: 4s; }
.token-hero .particle:nth-child(6) { top: 70%; left: 40%; animation-delay: 5s; }

@keyframes particleFloat {
    0%, 100% { transform: translateY(0px) scale(1); opacity: 0.7; }
    50% { transform: translateY(-20px) scale(1.2); opacity: 1; }
}

.token-hero .glow-effects {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.token-hero .glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(40px);
    animation: glowPulse 4s ease-in-out infinite;
}

.token-hero .glow-1 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(0, 102, 255, 0.3), transparent);
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.token-hero .glow-2 {
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(0, 204, 102, 0.2), transparent);
    top: 60%;
    right: 20%;
    animation-delay: 2s;
}

.token-hero .glow-3 {
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(0, 180, 166, 0.2), transparent);
    bottom: 20%;
    left: 50%;
    animation-delay: 1s;
}

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

.token-hero .hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-16);
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-6);
    position: relative;
    z-index: 2;
    height: 100%;
    min-height: 100vh;
}

.token-hero .hero-content {
    padding: var(--spacing-4) 0;
}

.token-hero .hero-badge .badge-text {
    background: linear-gradient(135deg, var(--accent-green), var(--medical-teal));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.token-hero .hero-title {
    font-size: var(--font-size-5xl);
    font-weight: 700;
    line-height: 1.1;
    margin: var(--spacing-6) 0;
}

.token-hero .title-line-1 {
    display: block;
    color: var(--neutral-white);
}

.token-hero .title-line-2 {
    display: block;
    background: linear-gradient(135deg, var(--primary-blue), var(--medical-teal));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.token-hero .hero-subtitle {
    font-size: var(--font-size-lg);
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: var(--spacing-8);
    max-width: 600px;
    word-wrap: break-word;
    word-break: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
}

.token-hero .hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-6);
    margin: var(--spacing-8) 0;
}

.token-hero .stat-item {
    text-align: center;
    padding: var(--spacing-4);
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(0, 102, 255, 0.2);
}

.token-hero .stat-number {
    display: block;
    font-size: var(--font-size-3xl);
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: var(--spacing-2);
}

.token-hero .stat-label {
    font-size: var(--font-size-sm);
    color: rgba(255, 255, 255, 0.7);
}

.token-hero .hero-actions {
    display: flex;
    gap: var(--spacing-4);
    margin-top: var(--spacing-8);
}

/* Tech Button Styles - Same as projects page */
.tech-btn {
    position: relative;
    padding: var(--spacing-4) var(--spacing-8);
    border-radius: var(--radius-lg);
    font-weight: 600;
    font-size: var(--font-size-base);
    cursor: pointer;
    transition: var(--transition-normal);
    overflow: hidden;
    border: none;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-primary.tech-btn {
    background: linear-gradient(135deg, var(--primary-blue), var(--medical-teal));
    color: var(--neutral-white);
    box-shadow: 0 4px 15px rgba(0, 102, 255, 0.3);
}

.btn-primary.tech-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 102, 255, 0.4);
}

.btn-secondary.tech-btn {
    background: transparent;
    color: var(--neutral-white);
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.btn-secondary.tech-btn:hover {
    border-color: var(--primary-blue);
    background: rgba(0, 102, 255, 0.1);
    transform: translateY(-2px);
}

.btn-glow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--primary-blue), var(--medical-teal));
    opacity: 0;
    transition: opacity var(--transition-normal);
    border-radius: var(--radius-lg);
}

.tech-btn:hover .btn-glow {
    opacity: 0.2;
}

.btn-particles {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    pointer-events: none;
    transform: translate(-50%, -50%);
}

.btn-border {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 2px solid transparent;
    border-radius: var(--radius-lg);
    background: linear-gradient(135deg, var(--primary-blue), var(--medical-teal)) border-box;
    -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: exclude;
    mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    opacity: 0;
    transition: opacity var(--transition-normal);
}

.btn-secondary.tech-btn:hover .btn-border {
    opacity: 1;
}

.token-hero .hero-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding: var(--spacing-8) 0;
}

.token-hero .hero-image {
    position: relative;
    width: 100%;
    max-width: 400px;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.token-hero .medical-icon {
    position: relative;
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, var(--primary-blue), var(--medical-teal));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 80px;
    color: var(--neutral-white);
    box-shadow:
        0 0 50px rgba(0, 102, 255, 0.3),
        0 0 100px rgba(0, 204, 102, 0.2);
    animation: iconFloat 6s ease-in-out infinite;
}

.token-hero .tech-elements {
    position: absolute;
    width: 100%;
    height: 100%;
}

.token-hero .floating-element {
    position: absolute;
    width: 60px;
    height: 60px;
    background: rgba(0, 102, 255, 0.1);
    border: 1px solid rgba(0, 102, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--primary-blue);
    animation: elementFloat 4s ease-in-out infinite;
}

.token-hero .element-1 {
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.token-hero .element-2 {
    top: 20%;
    right: 15%;
    animation-delay: 1s;
}

.token-hero .element-3 {
    bottom: 20%;
    left: 15%;
    animation-delay: 2s;
}

.token-hero .element-4 {
    bottom: 10%;
    right: 10%;
    animation-delay: 3s;
}

.token-hero .element-5 {
    top: 50%;
    left: 5%;
    animation-delay: 4s;
}

.token-hero .connection-lines {
    position: absolute;
    width: 100%;
    height: 100%;
}

.token-hero .line {
    position: absolute;
    background: linear-gradient(45deg, transparent, var(--primary-blue), transparent);
    opacity: 0.3;
    animation: lineFlow 3s ease-in-out infinite;
}

.token-hero .line-1 {
    width: 2px;
    height: 100px;
    top: 20%;
    left: 30%;
    animation-delay: 0s;
}

.token-hero .line-2 {
    width: 80px;
    height: 2px;
    top: 50%;
    right: 20%;
    animation-delay: 1s;
}

.token-hero .line-3 {
    width: 2px;
    height: 120px;
    bottom: 15%;
    left: 60%;
    animation-delay: 2s;
}

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

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

@keyframes ringRotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

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

@keyframes lineFlow {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.8; }
}



/* Token Overview Section */
.token-overview {
    padding: var(--spacing-20) 0;
    background: var(--neutral-gray-50);
}

.token-overview .section-title {
    color: var(--neutral-gray-900);
}

.token-overview .section-subtitle {
    color: var(--neutral-gray-700);
}

.overview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-8);
    margin-top: var(--spacing-12);
}

.overview-card {
    background: var(--neutral-white);
    padding: var(--spacing-8);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
    border: 1px solid var(--neutral-gray-200);
    text-align: center;
}

.overview-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-blue);
}

.overview-card .card-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-blue), var(--tech-purple));
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--spacing-6);
    font-size: 24px;
    color: var(--neutral-white);
}

.overview-card h3 {
    font-size: var(--font-size-xl);
    font-weight: 600;
    color: var(--neutral-gray-900);
    margin-bottom: var(--spacing-3);
}

.overview-card p {
    color: var(--neutral-gray-600);
    line-height: 1.6;
    word-wrap: break-word;
    word-break: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
}

/* Token Metrics Section */
.token-metrics {
    padding: var(--spacing-20) 0;
    background: var(--neutral-white);
}

.token-metrics .section-title {
    color: var(--neutral-gray-900);
}

.token-metrics .section-subtitle {
    color: var(--neutral-gray-700);
}

.metrics-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-16);
    align-items: center;
    margin-top: var(--spacing-12);
}

.metrics-chart {
    display: flex;
    align-items: center;
    justify-content: center;
}

.chart-placeholder {
    position: relative;
    width: 300px;
    height: 300px;
}

.chart-circle {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: conic-gradient(
        var(--primary-blue) 0deg 144deg,
        var(--accent-green) 144deg 234deg,
        var(--medical-teal) 234deg 306deg,
        var(--tech-purple) 306deg 360deg
    );
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.chart-center {
    width: 150px;
    height: 150px;
    background: var(--neutral-white);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
}

.chart-title {
    font-size: var(--font-size-2xl);
    font-weight: 700;
    color: var(--primary-blue);
}

.chart-subtitle {
    font-size: var(--font-size-sm);
    color: var(--neutral-gray-600);
}

.metrics-details {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-6);
}

.metric-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-4);
    padding: var(--spacing-4);
    background: var(--neutral-gray-50);
    border-radius: var(--radius-lg);
    transition: var(--transition-fast);
}

.metric-item:hover {
    background: var(--neutral-gray-100);
    transform: translateX(5px);
}

.metric-color {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    flex-shrink: 0;
}

.metric-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.metric-label {
    font-weight: 500;
    color: var(--neutral-gray-700);
}

.metric-value {
    font-weight: 700;
    color: var(--primary-blue);
    font-size: var(--font-size-lg);
}

/* Ecosystem Architecture Section */
.ecosystem-architecture {
    padding: var(--spacing-20) 0;
    background: var(--neutral-white);
    overflow: hidden;
}

.ecosystem-architecture .section-title {
    color: var(--neutral-gray-900);
}

.ecosystem-architecture .section-subtitle {
    color: var(--neutral-gray-700);
}

.architecture-diagram {
    margin-top: var(--spacing-12);
    position: relative;
}

.diagram-container {
    position: relative;
    width: 100%;
    height: 600px;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border-radius: var(--radius-2xl);
    border: 2px solid var(--neutral-gray-200);
    overflow: hidden;
}

.diagram-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="20" height="20" patternUnits="userSpaceOnUse"><path d="M 20 0 L 0 0 0 20" fill="none" stroke="rgba(0,102,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.5;
}

/* Central Hub */
.central-hub {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 160px;
    height: 160px;
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-green));
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow:
        0 0 30px rgba(0, 102, 255, 0.3),
        0 0 60px rgba(0, 204, 102, 0.2);
    z-index: 10;
    animation: hubPulse 4s ease-in-out infinite;
}

.hub-icon {
    font-size: 40px;
    color: var(--neutral-white);
    margin-bottom: var(--spacing-2);
}

.hub-label {
    text-align: center;
    color: var(--neutral-white);
}

.hub-title {
    display: block;
    font-size: var(--font-size-lg);
    font-weight: 700;
}

.hub-subtitle {
    display: block;
    font-size: var(--font-size-sm);
    opacity: 0.9;
}

@keyframes hubPulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        box-shadow:
            0 0 30px rgba(0, 102, 255, 0.3),
            0 0 60px rgba(0, 204, 102, 0.2);
    }
    50% {
        transform: translate(-50%, -50%) scale(1.05);
        box-shadow:
            0 0 40px rgba(0, 102, 255, 0.4),
            0 0 80px rgba(0, 204, 102, 0.3);
    }
}

/* Ecosystem Components */
.ecosystem-component {
    position: absolute;
    width: 140px;
    height: 100px;
    background: var(--neutral-white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    border: 2px solid var(--neutral-gray-200);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: var(--spacing-3);
    transition: var(--transition-normal);
    z-index: 5;
}

.ecosystem-component:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-blue);
}

.component-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary-blue), var(--tech-purple));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--neutral-white);
    margin-bottom: var(--spacing-2);
}

.component-content h4 {
    font-size: var(--font-size-sm);
    font-weight: 600;
    color: var(--neutral-gray-900);
    margin: 0 0 var(--spacing-1) 0;
}

.component-content p {
    font-size: var(--font-size-xs);
    color: var(--neutral-gray-600);
    margin: 0;
}

/* Component Positioning */
.component-1 { top: 15%; left: 15%; }
.component-2 { top: 15%; right: 15%; }
.component-3 { top: 50%; right: 5%; transform: translateY(-50%); }
.component-4 { bottom: 15%; right: 15%; }
.component-5 { bottom: 15%; left: 15%; }
.component-6 { top: 50%; left: 5%; transform: translateY(-50%); }

/* Connection Lines */
.connection-lines {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.connection-line {
    position: absolute;
    background: linear-gradient(45deg, transparent, var(--primary-blue), transparent);
    opacity: 0.3;
}

.line-1 {
    width: 2px;
    height: 120px;
    top: 25%;
    left: 25%;
    transform: rotate(45deg);
}

.line-2 {
    width: 2px;
    height: 120px;
    top: 25%;
    right: 25%;
    transform: rotate(-45deg);
}

.line-3 {
    width: 120px;
    height: 2px;
    top: 50%;
    right: 20%;
    transform: translateY(-50%);
}

.line-4 {
    width: 2px;
    height: 120px;
    bottom: 25%;
    right: 25%;
    transform: rotate(45deg);
}

.line-5 {
    width: 2px;
    height: 120px;
    bottom: 25%;
    left: 25%;
    transform: rotate(-45deg);
}

.line-6 {
    width: 120px;
    height: 2px;
    top: 50%;
    left: 20%;
    transform: translateY(-50%);
}

/* Flow Particles */
.flow-indicators {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
}

.flow-particle {
    position: absolute;
    width: 8px;
    height: 8px;
    background: var(--accent-green);
    border-radius: 50%;
    animation: flowMove 3s ease-in-out infinite;
}

.particle-1 {
    top: 20%;
    left: 20%;
    animation-delay: 0s;
}

.particle-2 {
    top: 20%;
    right: 20%;
    animation-delay: 0.5s;
}

.particle-3 {
    top: 50%;
    right: 10%;
    animation-delay: 1s;
}

.particle-4 {
    bottom: 20%;
    right: 20%;
    animation-delay: 1.5s;
}

.particle-5 {
    bottom: 20%;
    left: 20%;
    animation-delay: 2s;
}

.particle-6 {
    top: 50%;
    left: 10%;
    animation-delay: 2.5s;
}

@keyframes flowMove {
    0%, 100% {
        opacity: 0.3;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.5);
    }
}

/* Architecture Legend */
.architecture-legend {
    display: flex;
    justify-content: center;
    gap: var(--spacing-8);
    margin-top: var(--spacing-8);
    flex-wrap: wrap;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-2);
    padding: var(--spacing-3) var(--spacing-4);
    background: var(--neutral-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--neutral-gray-200);
}

.legend-icon {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: var(--neutral-white);
}

.legend-icon.governance {
    background: linear-gradient(135deg, var(--primary-blue), var(--tech-purple));
}

.legend-icon.funding {
    background: linear-gradient(135deg, var(--accent-green), var(--medical-teal));
}

.legend-icon.value {
    background: linear-gradient(135deg, var(--tech-purple), var(--primary-blue));
}

.legend-item span {
    font-size: var(--font-size-sm);
    font-weight: 500;
    color: var(--neutral-gray-700);
}

/* Token Utility Section */
.token-utility {
    padding: var(--spacing-20) 0;
    background: var(--neutral-gray-50);
}

.token-utility .section-title {
    color: var(--neutral-gray-900);
}

.token-utility .section-subtitle {
    color: var(--neutral-gray-700);
}

.utility-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--spacing-8);
    margin-top: var(--spacing-12);
}

.utility-card {
    background: var(--neutral-white);
    padding: var(--spacing-8);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
    border: 1px solid var(--neutral-gray-200);
    position: relative;
    overflow: hidden;
}

.utility-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-green));
    transform: scaleX(0);
    transition: var(--transition-normal);
}

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

.utility-card:hover::before {
    transform: scaleX(1);
}

.utility-card .card-header {
    display: flex;
    align-items: center;
    gap: var(--spacing-4);
    margin-bottom: var(--spacing-4);
}

.utility-card .card-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-blue), var(--tech-purple));
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--neutral-white);
    flex-shrink: 0;
}

.utility-card h3 {
    font-size: var(--font-size-lg);
    font-weight: 600;
    color: var(--neutral-gray-900);
    margin: 0;
}

.utility-card p {
    color: var(--neutral-gray-600);
    line-height: 1.6;
    margin: 0;
    word-wrap: break-word;
    word-break: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
}

/* Token Roadmap Section */
.token-roadmap {
    padding: var(--spacing-20) 0;
    background: var(--neutral-white);
}

.token-roadmap .section-title {
    color: var(--neutral-gray-900);
}

.token-roadmap .section-subtitle {
    color: var(--neutral-gray-700);
}

.roadmap-timeline {
    margin-top: var(--spacing-12);
    position: relative;
}

.timeline-item {
    display: flex;
    gap: var(--spacing-6);
    margin-bottom: var(--spacing-12);
    position: relative;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-marker {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-shrink: 0;
}

.marker-dot {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--neutral-gray-300);
    border: 4px solid var(--neutral-white);
    box-shadow: var(--shadow-md);
    position: relative;
    z-index: 2;
}

.marker-dot.completed {
    background: var(--accent-green);
}

.marker-dot.active {
    background: var(--primary-blue);
    animation: pulse 2s ease-in-out infinite;
}

.marker-line {
    width: 2px;
    height: 80px;
    background: var(--neutral-gray-200);
    margin-top: var(--spacing-2);
}

.timeline-item:last-child .marker-line {
    display: none;
}

.timeline-content {
    flex: 1;
    padding-top: var(--spacing-1);
}

.timeline-date {
    font-size: var(--font-size-sm);
    font-weight: 600;
    color: var(--primary-blue);
    margin-bottom: var(--spacing-2);
}

.timeline-content h3 {
    font-size: var(--font-size-xl);
    font-weight: 600;
    color: var(--neutral-gray-900);
    margin-bottom: var(--spacing-3);
}

.timeline-content p {
    color: var(--neutral-gray-600);
    line-height: 1.6;
    margin: 0;
    word-wrap: break-word;
    word-break: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
}

/* Token CTA Section */
.token-cta {
    padding: var(--spacing-20) 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
    color: var(--neutral-white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.token-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(0,102,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.cta-title {
    font-size: var(--font-size-4xl);
    font-weight: 700;
    margin-bottom: var(--spacing-6);
    background: linear-gradient(135deg, var(--neutral-white) 0%, var(--primary-blue) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-subtitle {
    font-size: var(--font-size-xl);
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: var(--spacing-10);
    line-height: 1.6;
}

.cta-actions {
    display: flex;
    gap: var(--spacing-6);
    justify-content: center;
    align-items: center;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .token-hero {
        height: 100vh;
        min-height: 100vh;
    }
    
    .token-hero .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: var(--spacing-12);
        min-height: 100vh;
    }
    
    .token-hero .hero-subtitle {
        max-width: 100%;
        padding: 0 var(--spacing-2);
    }
    
    .overview-card p,
    .utility-card p,
    .timeline-content p {
        line-height: 1.5;
    }
    
    .section-subtitle {
        padding: 0 var(--spacing-2);
    }
    
    .token-hero .hero-image {
        max-width: 300px;
        height: 300px;
    }
    
    .token-hero .medical-icon {
        width: 150px;
        height: 150px;
        font-size: 60px;
    }
    
    .token-hero .hero-stats {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .token-hero {
        height: 100vh;
        min-height: 100vh;
    }
    
    .token-hero .hero-container {
        min-height: 100vh;
        padding: var(--spacing-4);
    }
    
    .token-hero .hero-content {
        padding: var(--spacing-4) 0;
    }
    
    .token-hero .hero-visual {
        padding: var(--spacing-4) 0;
    }
    
    .token-hero .hero-title {
        font-size: var(--font-size-3xl);
    }
    
    .token-hero .hero-subtitle {
        font-size: var(--font-size-lg);
        max-width: 100%;
        padding: 0 var(--spacing-2);
    }
    
    .overview-card p,
    .utility-card p,
    .timeline-content p {
        font-size: var(--font-size-base);
        line-height: 1.5;
    }
    
    .section-subtitle {
        font-size: var(--font-size-lg);
        padding: 0 var(--spacing-2);
    }
    
    .token-hero .hero-image {
        max-width: 250px;
        height: 250px;
    }
    
    .token-hero .medical-icon {
        width: 120px;
        height: 120px;
        font-size: 50px;
    }
    
    .token-hero .hero-stats {
        grid-template-columns: 1fr;
        gap: var(--spacing-4);
    }
    
    .token-hero .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .token-hero .floating-element {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
}

    /* Architecture Diagram Responsive */
    .diagram-container {
        height: 500px;
    }

    .central-hub {
        width: 120px;
        height: 120px;
    }

    .hub-icon {
        font-size: 30px;
    }

    .hub-title {
        font-size: var(--font-size-base);
    }

    .ecosystem-component {
        width: 100px;
        height: 80px;
        padding: var(--spacing-2);
    }

    .component-icon {
        width: 30px;
        height: 30px;
        font-size: 14px;
    }

    .component-content h4 {
        font-size: var(--font-size-xs);
    }

    .component-content p {
        font-size: 10px;
    }

    .architecture-legend {
        gap: var(--spacing-4);
    }

    .legend-item {
        padding: var(--spacing-2) var(--spacing-3);
    }

    .legend-icon {
        width: 24px;
        height: 24px;
        font-size: 12px;
    }

    .legend-item span {
        font-size: var(--font-size-xs);
    }

@media (max-width: 480px) {
    .token-hero {
        height: 100vh;
        min-height: 100vh;
    }
    
    .token-hero .hero-container {
        min-height: 100vh;
        padding: var(--spacing-3);
    }
    
    .token-hero .hero-content {
        padding: var(--spacing-3) 0;
    }
    
    .token-hero .hero-visual {
        padding: var(--spacing-3) 0;
    }
    
    .token-hero .hero-title {
        font-size: var(--font-size-2xl);
    }
    
    .token-hero .hero-subtitle {
        font-size: var(--font-size-base);
        max-width: 100%;
        padding: 0 var(--spacing-2);
    }
    
    .overview-card p,
    .utility-card p,
    .timeline-content p {
        font-size: var(--font-size-sm);
        line-height: 1.5;
    }
    
    .section-subtitle {
        font-size: var(--font-size-base);
        padding: 0 var(--spacing-2);
    }
    
    .token-hero .hero-image {
        max-width: 200px;
        height: 200px;
    }
    
    .token-hero .medical-icon {
        width: 100px;
        height: 100px;
        font-size: 40px;
    }
    
    .token-hero .floating-element {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
}

/* Component Modal Styles */
.component-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease-out;
}

.component-modal.active {
    opacity: 1;
    visibility: visible;
}

.component-modal .modal-content {
    background: var(--neutral-white);
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-2xl);
    max-width: 500px;
    width: 90%;
    margin: var(--spacing-4);
    transform: translateY(20px) scale(0.95);
    transition: all 0.3s ease-out;
    border: 1px solid var(--neutral-gray-200);
}

.component-modal.active .modal-content {
    transform: translateY(0) scale(1);
}

.component-modal .modal-header {
    padding: var(--spacing-6) var(--spacing-6) var(--spacing-4);
    border-bottom: 1px solid var(--neutral-gray-200);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.component-modal .modal-title {
    font-size: var(--font-size-xl);
    font-weight: 700;
    color: var(--neutral-gray-900);
    margin: 0;
}

.component-modal .modal-close {
    width: 32px;
    height: 32px;
    border: none;
    background: var(--neutral-gray-100);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-fast);
    color: var(--neutral-gray-600);
}

.component-modal .modal-close:hover {
    background: var(--neutral-gray-200);
    color: var(--neutral-gray-900);
}

.component-modal .modal-body {
    padding: var(--spacing-6);
}

.component-modal .modal-description {
    font-size: var(--font-size-base);
    line-height: 1.6;
    color: var(--neutral-gray-700);
    margin: 0;
}

.component-modal .modal-footer {
    padding: var(--spacing-4) var(--spacing-6) var(--spacing-6);
    display: flex;
    justify-content: flex-end;
}

.component-modal .modal-btn {
    padding: var(--spacing-3) var(--spacing-6);
    font-size: var(--font-size-sm);
}
