/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    overflow-x: hidden;
    background: #000014;
}

:root {
    --primary-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --secondary-gradient: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --success-gradient: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    --danger-gradient: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
    --dark-gradient: linear-gradient(135deg, #0c0c0c 0%, #1a1a2e 100%);
    --glassmorphism: rgba(255, 255, 255, 0.1);
    --text-glow: 0 0 20px rgba(102, 126, 234, 0.3);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Particles Background */
#particles-js {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
    background: radial-gradient(ellipse at bottom, #0d1d31 0%, #0c0d13 100%);
}

/* Header */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 1000;
    transition: all 0.3s ease;
}

.header.scrolled {
    background: rgba(0, 0, 20, 0.95);
    border-bottom: 1px solid rgba(102, 126, 234, 0.3);
}

.header.scrolled .nav-links a {
    color: #e2e8f0;
}

.header.scrolled .brand-name {
    color: white;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo {
    height: 40px;
    width: auto;
}

.brand-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: #1a1a1a;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 1rem;
    border-radius: 8px;
}

.nav-links a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary-gradient);
    border-radius: 8px;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.nav-links a:hover {
    color: white;
    transform: translateY(-2px);
}

.nav-links a:hover::before {
    opacity: 1;
}

/* Mobile Menu */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary-gradient);
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

.cta-button, .primary-btn, .secondary-btn {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    font-family: 'Space Grotesk', sans-serif;
}

.glow-effect {
    box-shadow: 0 0 30px rgba(102, 126, 234, 0.5);
    animation: pulse-glow 2s infinite;
}

@keyframes pulse-glow {
    0%, 100% { box-shadow: 0 0 30px rgba(102, 126, 234, 0.5); }
    50% { box-shadow: 0 0 50px rgba(102, 126, 234, 0.8); }
}

.pulse-effect {
    animation: gentle-pulse 2s infinite;
}

@keyframes gentle-pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.cta-button, .primary-btn {
    background: var(--primary-gradient);
    color: white;
    position: relative;
}

.cta-button::before, .primary-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s;
}

.cta-button:hover::before, .primary-btn:hover::before {
    left: 100%;
}

.cta-button:hover, .primary-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}

.secondary-btn {
    background: rgba(255, 255, 255, 0.1);
    color: #667eea;
    border: 2px solid;
    border-image: var(--primary-gradient) 1;
    backdrop-filter: blur(10px);
}

.secondary-btn:hover {
    background: #667eea;
    color: white;
}

.large {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

/* Hero Section */
.hero {
    padding: 8rem 2rem 4rem;
    background: transparent;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
    min-height: 90vh;
    position: relative;
    z-index: 1;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(102, 126, 234, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(118, 75, 162, 0.1) 0%, transparent 50%);
    z-index: -1;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    font-family: 'Space Grotesk', sans-serif;
    color: white;
    text-shadow: var(--text-glow);
}

.highlight {
    color: #10b981;
}

.highlight-red {
    color: #ef4444;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #e2e8f0;
    margin-bottom: 2rem;
    line-height: 1.6;
    opacity: 0.9;
}

/* Hero Stats */
.hero-stats {
    display: flex;
    gap: 2rem;
    margin-top: 3rem;
    padding: 2rem;
    background: var(--glassmorphism);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-item {
    text-align: center;
    color: white;
}

.stat-item .counter {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-item span:last-child {
    font-size: 0.875rem;
    opacity: 0.8;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.platform-preview {
    background: var(--glassmorphism);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.floating {
    animation: gentleFloat 8s ease-in-out infinite;
}

.preview-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.preview-controls {
    display: flex;
    gap: 0.5rem;
}

.control {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.control.red { background: #ff5f57; }
.control.yellow { background: #ffbd2e; }
.control.green { background: #28ca42; }

.preview-title {
    color: white;
    font-weight: 600;
    font-size: 0.875rem;
}

.live-indicator {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
    color: #10b981;
    font-size: 0.875rem;
    font-weight: 500;
}

.live-dot {
    width: 8px;
    height: 8px;
    background: #10b981;
    border-radius: 50%;
    animation: pulse-dot 1.5s infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

.post-example {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 1.5rem;
    margin-bottom: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.post-example::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    transition: all 0.3s ease;
}

.animate-in {
    animation: slideInRight 0.8s ease-out;
}

.animate-in-delayed {
    animation: slideInRight 0.8s ease-out 0.4s both;
}

@keyframes slideInRight {
    from {
        transform: translateX(100px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.post-example.success::before {
    background: var(--success-gradient);
}

.post-example.success:hover {
    box-shadow: 0 10px 40px rgba(16, 185, 129, 0.2);
    transform: translateY(-5px);
}

.post-example.failed::before {
    background: var(--danger-gradient);
}

.post-example.failed {
    opacity: 0.7;
}

.post-example.failed:hover {
    box-shadow: 0 10px 40px rgba(239, 68, 68, 0.2);
    transform: translateY(-5px);
}

.post-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.75rem;
}

.avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: white;
    font-size: 1.2rem;
}

.success-avatar {
    background: var(--success-gradient);
}

.failed-avatar {
    background: var(--danger-gradient);
}

.user-info {
    flex: 1;
}

.timestamp {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
    margin-left: auto;
}

.username {
    font-weight: 600;
    color: white;
    display: block;
    margin-bottom: 0.25rem;
}

.status.verified {
    color: #10b981;
    font-weight: 500;
    font-size: 0.875rem;
}

.status.verified i {
    margin-right: 0.25rem;
}

.status.failed {
    color: #ef4444;
    font-weight: 500;
    font-size: 0.875rem;
}

.status.failed i {
    margin-right: 0.25rem;
}

.post-content {
    margin-bottom: 1rem;
    color: #e2e8f0;
    font-size: 1rem;
    line-height: 1.5;
}

.post-actions {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.action-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.action-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.action-btn.truth:hover {
    background: rgba(16, 185, 129, 0.3);
    border-color: #10b981;
}

.action-btn.lie:hover {
    background: rgba(239, 68, 68, 0.3);
    border-color: #ef4444;
}

.post-actions.disabled .action-btn {
    opacity: 0.5;
    cursor: not-allowed;
}

.post-actions.disabled .action-btn:hover {
    transform: none;
}

.post-footer {
    display: flex;
    justify-content: space-between;
    font-size: 0.875rem;
    align-items: center;
}

.confidence {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.8rem;
}

.animate-number {
    animation: number-pop 0.6s ease-out;
}

@keyframes number-pop {
    0% { transform: scale(0.8); opacity: 0; }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); opacity: 1; }
}

.reward {
    color: #10b981;
    font-weight: 600;
}

.penalty {
    color: #ef4444;
    font-weight: 600;
}

/* Section Styles */
section {
    padding: 4rem 0;
    position: relative;
    opacity: 1;
    visibility: visible;
}

section:nth-child(even) {
    background: rgba(255, 255, 255, 0.02);
}

section:nth-child(odd) {
    background: transparent;
}

/* Ensure all content is visible by default */
* {
    opacity: 1;
    visibility: visible;
}

section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    font-family: 'Space Grotesk', sans-serif;
    color: white;
    text-shadow: var(--text-glow);
}

.section-subtitle {
    font-size: 1.25rem;
    text-align: center;
    color: #e2e8f0;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.9;
}

/* Interactive Demo Section */
.demo-section {
    background: var(--dark-gradient);
    padding: 6rem 0;
}

.demo-interface {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.demo-post-creator, .demo-voting {
    background: var(--glassmorphism);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.demo-post-creator h3, .demo-voting h3 {
    color: white;
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
    font-weight: 600;
}

#demo-post {
    width: 100%;
    min-height: 120px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 1rem;
    color: white;
    font-family: inherit;
    font-size: 1rem;
    resize: vertical;
    margin-bottom: 1.5rem;
}

#demo-post::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

#demo-post:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.post-type-selector {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.post-type {
    flex: 1;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.post-type input {
    display: none;
}

.post-type span {
    display: block;
    color: white;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.post-type small {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.8rem;
}

.post-type:hover {
    border-color: #667eea;
    background: rgba(102, 126, 234, 0.1);
}

.post-type input:checked + span {
    color: #667eea;
}

.post-type:has(input:checked) {
    border-color: #667eea;
    background: rgba(102, 126, 234, 0.2);
}

.stake-selector {
    margin-bottom: 1.5rem;
}

.stake-selector label {
    display: block;
    color: white;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

#stake-amount {
    width: 100%;
    margin-bottom: 0.5rem;
    accent-color: #667eea;
}

#stake-display {
    color: #667eea;
    font-weight: 600;
}

.demo-btn {
    width: 100%;
    padding: 1rem;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.demo-btn.primary {
    background: var(--primary-gradient);
    color: white;
}

.demo-btn.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}

.demo-post-result {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    min-height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.6);
}

.voting-interface {
    text-align: center;
}

.voting-interface p {
    color: white;
    margin-bottom: 1rem;
}

.vote-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.vote-btn {
    flex: 1;
    padding: 0.75rem;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.truth-vote {
    background: rgba(16, 185, 129, 0.2);
    color: #10b981;
    border: 2px solid #10b981;
}

.truth-vote:hover {
    background: rgba(16, 185, 129, 0.3);
    transform: translateY(-2px);
}

.lie-vote {
    background: rgba(239, 68, 68, 0.2);
    color: #ef4444;
    border: 2px solid #ef4444;
}

.lie-vote:hover {
    background: rgba(239, 68, 68, 0.3);
    transform: translateY(-2px);
}

.vote-stake {
    color: rgba(255, 255, 255, 0.8);
}

.vote-stake input {
    width: 100%;
    margin-bottom: 0.5rem;
    accent-color: #667eea;
}

.demo-explanation {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.explanation-item {
    text-align: center;
    padding: 2rem;
    background: var(--glassmorphism);
    backdrop-filter: blur(20px);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.explanation-item i {
    font-size: 2.5rem;
    color: #667eea;
    margin-bottom: 1rem;
}

.explanation-item h4 {
    color: white;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.explanation-item p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

/* Problem Section */
.problem-section {
    background: rgba(255, 255, 255, 0.02);
}

.problem-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.problem-item {
    text-align: center;
    padding: 2rem;
    background: var(--glassmorphism);
    backdrop-filter: blur(20px);
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease;
}

.problem-item:hover {
    transform: translateY(-10px);
}

.problem-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.problem-item h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: white;
}

.problem-item p {
    color: rgba(255, 255, 255, 0.8);
}

/* Solution Section */
.solution-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.solution-item {
    text-align: center;
    padding: 2rem;
    background: var(--glassmorphism);
    backdrop-filter: blur(20px);
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.solution-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(102, 126, 234, 0.2);
}

.solution-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.solution-item h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: white;
}

.solution-item p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

/* How It Works */
.how-it-works {
    background: rgba(255, 255, 255, 0.02);
}

.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.step {
    text-align: center;
    padding: 2rem;
    background: var(--glassmorphism);
    backdrop-filter: blur(20px);
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    transition: all 0.3s ease;
}

.step:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(102, 126, 234, 0.2);
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
}

.step h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: white;
}

.step p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

/* Features */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.feature {
    padding: 2rem;
    background: var(--glassmorphism);
    backdrop-filter: blur(20px);
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.feature:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(102, 126, 234, 0.2);
}

.feature h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: white;
}

.feature p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

/* Testimonials */
.testimonials {
    background: var(--dark-gradient);
    padding: 6rem 0;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial {
    background: var(--glassmorphism);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.testimonial:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(102, 126, 234, 0.2);
}

.testimonial-content {
    margin-bottom: 1.5rem;
}

.testimonial-content p {
    color: #e2e8f0;
    font-style: italic;
    line-height: 1.6;
    font-size: 1.1rem;
    position: relative;
}

.testimonial-content p::before {
    content: '"';
    font-size: 3rem;
    color: #667eea;
    position: absolute;
    top: -1rem;
    left: -1rem;
    opacity: 0.3;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--primary-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1.25rem;
}

.author-name {
    color: white;
    font-weight: 600;
    display: block;
    margin-bottom: 0.25rem;
}

.author-title {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

/* Stats */
.stats {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.stats h2 {
    color: white;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.stat {
    text-align: center;
    position: relative;
}

.stat-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    opacity: 0.8;
}

.stat-suffix {
    font-size: 2rem;
    font-weight: 700;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Roadmap */
.roadmap {
    background: rgba(255, 255, 255, 0.02);
}

.timeline {
    max-width: 800px;
    margin: 0 auto;
}

.timeline-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 3rem;
    position: relative;
    opacity: 1;
    visibility: visible;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 40px;
    width: 2px;
    height: calc(100% + 1.5rem);
    background: #e2e8f0;
}

.timeline-item:last-child::before {
    display: none;
}

.timeline-marker {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #e2e8f0;
    margin-right: 2rem;
    position: relative;
    z-index: 1;
}

.timeline-item.completed .timeline-marker {
    background: #10b981;
}

.timeline-item.current .timeline-marker {
    background: #667eea;
}

.timeline-content {
    flex: 1;
    background: var(--glassmorphism);
    backdrop-filter: blur(20px);
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.timeline-content:hover {
    transform: translateX(10px);
    box-shadow: 0 20px 60px rgba(102, 126, 234, 0.2);
}

.timeline-content h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: white;
}

.timeline-content p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.timeline-status {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
}

.timeline-item.completed .timeline-status {
    background: #dcfce7;
    color: #166534;
}

.timeline-item.current .timeline-status {
    background: #dbeafe;
    color: #1e40af;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d3748 100%);
    color: white;
    text-align: center;
    opacity: 1;
    visibility: visible;
}

.cta-section h2 {
    color: white;
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.cta-footnote {
    font-style: italic;
    opacity: 0.8;
    font-size: 1.1rem;
}

/* Footer */
.footer {
    background: #1a1a1a;
    color: white;
    padding: 3rem 0 1rem;
    opacity: 1;
    visibility: visible;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.footer-logo {
    height: 40px;
    width: auto;
}

.footer-brand-name {
    font-size: 1.5rem;
    font-weight: 700;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.footer-column h4 {
    margin-bottom: 1rem;
    font-weight: 600;
}

.footer-column a {
    display: block;
    color: #a0aec0;
    text-decoration: none;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid #2d3748;
    padding-top: 1rem;
    text-align: center;
    color: #a0aec0;
}

/* Mobile Navigation */
.nav-links.mobile-active {
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    background: var(--glassmorphism);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 999;
    animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .nav-links.mobile-active {
        display: flex;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .hero {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 6rem 1rem 3rem;
    }

    .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }

    .demo-interface {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .waitlist-form {
        flex-direction: column;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }

    .container {
        padding: 0 1rem;
    }

    section {
        padding: 3rem 0;
    }

    section h2 {
        font-size: 2rem;
    }

    .problem-grid,
    .solution-grid,
    .steps,
    .features-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .demo-explanation {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-links {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .modal {
        width: 95%;
        margin: 1rem;
    }

    .modal-header,
    .modal-body {
        padding: 1.5rem;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .timeline-item {
        flex-direction: column;
        text-align: center;
    }

    .timeline-marker {
        margin: 0 auto 1rem;
    }

    .timeline-item::before {
        display: none;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Ripple Effect */
.ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: scale(0);
    animation: ripple-animation 0.6s linear;
    pointer-events: none;
}

@keyframes ripple-animation {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

/* Modal Styles Removed - No popup functionality */

/* Enhanced Animation Classes */
.animate-in {
    animation: slideInUp 0.8s ease-out;
}

@keyframes slideInUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Demo Post Styles */
.demo-post-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    animation: slideInRight 0.5s ease-out;
}

.demo-post-item .post-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.demo-post-item .avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--primary-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
}

.demo-post-item .user-info {
    flex: 1;
}

.demo-post-item .username {
    display: block;
    color: white;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.demo-post-item .status.pending {
    color: #f59e0b;
    font-size: 0.875rem;
}

.demo-post-item .post-content {
    color: #e2e8f0;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.demo-post-item .post-meta {
    display: flex;
    gap: 1rem;
    font-size: 0.875rem;
}

.demo-post-item .post-type {
    color: rgba(255, 255, 255, 0.7);
}

.demo-post-item .stake {
    color: #667eea;
    font-weight: 600;
}


/* Enhanced Loading Animations */
.solution-item,
.step,
.feature,
.timeline-item,
.testimonial,
.problem-item {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.6s ease;
}

.solution-item.animate-in,
.step.animate-in,
.feature.animate-in,
.timeline-item.animate-in,
.testimonial.animate-in,
.problem-item.animate-in {
    opacity: 1;
    transform: translateY(0);
}

/* Gentle Float Animation for Particles */
@keyframes gentleFloat {
    0%, 100% {
        transform: translateY(0) translateX(0);
        opacity: 0.3;
    }
    25% {
        transform: translateY(-10px) translateX(5px);
        opacity: 0.6;
    }
    50% {
        transform: translateY(-5px) translateX(-3px);
        opacity: 0.4;
    }
    75% {
        transform: translateY(-15px) translateX(8px);
        opacity: 0.5;
    }
}

/* Staggered Animation */
.solution-item:nth-child(1) { transition-delay: 0.1s; }
.solution-item:nth-child(2) { transition-delay: 0.2s; }
.solution-item:nth-child(3) { transition-delay: 0.3s; }
.solution-item:nth-child(4) { transition-delay: 0.4s; }

.step:nth-child(1) { transition-delay: 0.1s; }
.step:nth-child(2) { transition-delay: 0.2s; }
.step:nth-child(3) { transition-delay: 0.3s; }
.step:nth-child(4) { transition-delay: 0.4s; }

.testimonial:nth-child(1) { transition-delay: 0.1s; }
.testimonial:nth-child(2) { transition-delay: 0.2s; }
.testimonial:nth-child(3) { transition-delay: 0.3s; }