/* 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: #1f2937;
    background-color: #f8fafc;
}

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

/* Header */
.header {
    background: white;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: #1f2937;
}

.logo-text {
    font-size: 24px;
    font-weight: 700;
    color: #2563eb;
}

.nav-menu {
    display: flex;
    gap: 32px;
}

.nav-link {
    text-decoration: none;
    color: #6b7280;
    font-weight: 500;
    font-size: 14px;
    transition: color 0.2s;
}

.nav-link:hover,
.nav-link.active {
    color: #2563eb;
}

.nav-auth {
    display: flex;
    gap: 16px;
}

.auth-link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    text-decoration: none;
    color: #374151;
    font-size: 14px;
    font-weight: 500;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    transition: all 0.2s;
}

.auth-link:hover {
    background-color: #f9fafb;
    border-color: #2563eb;
    color: #2563eb;
}

.auth-link--tor {
    background-color: #1f2937;
    color: white;
    border-color: #1f2937;
}

.auth-link--tor:hover {
    background-color: #374151;
    color: white;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #e0e7ff 0%, #f1f5f9 100%);
    padding: 80px 0;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 60px;
    align-items: start;
}

.hero-card {
    background: white;
    padding: 48px;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.hero-title {
    font-size: 48px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.hero-description {
    font-size: 16px;
    color: #6b7280;
    margin-bottom: 32px;
    line-height: 1.7;
}

.btn {
    display: inline-block;
    padding: 12px 32px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    border-radius: 8px;
    transition: all 0.2s;
    text-align: center;
    border: 2px solid transparent;
}

.btn-primary {
    background-color: #2563eb;
    color: white;
}

.btn-primary:hover {
    background-color: #1d4ed8;
    transform: translateY(-1px);
}

.btn-outline {
    background-color: transparent;
    color: #2563eb;
    border-color: #2563eb;
}

.btn-outline:hover {
    background-color: #2563eb;
    color: white;
}

.hero-sidebar {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.feature-card {
    background: white;
    padding: 24px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 16px;
}

.feature-icon .dots {
    font-size: 24px;
    color: #6b7280;
}

.feature-content h3 {
    font-size: 14px;
    font-weight: 600;
    color: #1f2937;
}

.stats-card {
    background: white;
    padding: 24px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.stats-number {
    font-size: 36px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 8px;
}

.stats-label {
    font-size: 14px;
    color: #6b7280;
    position: relative;
}

.stats-icon {
    position: absolute;
    right: 0;
    top: 0;
}

.kraken-link-card {
    background: #4f46e5;
    padding: 24px;
    border-radius: 12px;
    color: white;
}

.kraken-link-card h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 16px;
}

.tor-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    text-decoration: none;
    color: white;
    font-weight: 500;
    transition: all 0.2s;
}

.tor-link:hover {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

/* About Section */
.about {
    padding: 80px 0;
    background: white;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-icon {
    margin-bottom: 24px;
}

.section-title {
    font-size: 32px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 16px;
}

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

.about-description,
.about-additional {
    font-size: 16px;
    color: #6b7280;
    margin-bottom: 24px;
    line-height: 1.7;
}

.about-cta {
    margin-top: 40px;
}

/* Features Section */
.features {
    padding: 80px 0;
    background: #f8fafc;
}

.features .section-title {
    text-align: center;
    margin-bottom: 60px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.feature-item {
    background: white;
    padding: 40px 32px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.feature-item .feature-icon {
    margin-bottom: 24px;
}

.feature-item h3 {
    font-size: 20px;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 16px;
}

.feature-item p {
    font-size: 14px;
    color: #6b7280;
    line-height: 1.6;
}

.features-cta {
    text-align: center;
}

/* Access Section */
.access {
    padding: 80px 0;
    background: white;
}

.access .section-title {
    text-align: center;
    margin-bottom: 60px;
}

.access-grid {
    display: grid;
    gap: 20px;
    max-width: 800px;
    margin: 0 auto;
}

.access-item {
    background: #f8fafc;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #e5e7eb;
}

.access-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px;
    background: white;
    cursor: pointer;
    transition: background-color 0.2s;
}

.access-header:hover {
    background-color: #f9fafb;
}

.access-header h3 {
    font-size: 16px;
    font-weight: 600;
    color: #1f2937;
}

.access-content {
    padding: 24px;
    background: #f8fafc;
}

.access-content p {
    font-size: 14px;
    color: #6b7280;
    line-height: 1.6;
}

.access-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 12px;
    margin-top: 16px;
}

.access-link {
    display: block;
    padding: 8px 16px;
    background: white;
    color: #2563eb;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 500;
    font-size: 14px;
    text-align: center;
    border: 1px solid #e5e7eb;
    transition: all 0.2s;
}

.access-link:hover {
    background-color: #2563eb;
    color: white;
    border-color: #2563eb;
}

/* Reviews Section */
.reviews {
    padding: 80px 0;
    background: #f8fafc;
}

.reviews .section-title {
    text-align: center;
    margin-bottom: 60px;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    margin-bottom: 40px;
}

.review-item {
    background: white;
    padding: 32px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.review-author {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}

.author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #f3f4f6;
    display: flex;
    align-items: center;
    justify-content: center;
}

.author-info h4 {
    font-size: 14px;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 2px;
}

.author-info span {
    font-size: 12px;
    color: #6b7280;
}

.review-text {
    font-size: 14px;
    color: #374151;
    line-height: 1.6;
}

.reviews-pagination {
    text-align: center;
}

.pagination-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #d1d5db;
    cursor: pointer;
    transition: background-color 0.2s;
}

.dot.active {
    background-color: #2563eb;
}

/* Footer */
.footer {
    background: #1f2937;
    color: white;
    padding: 40px 0;
}

.footer .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.footer-links {
    display: flex;
    gap: 24px;
}

.footer-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #d1d5db;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s;
}

.footer-link:hover {
    color: white;
}

.footer-info {
    text-align: center;
}

.footer-info p {
    font-size: 12px;
    color: #9ca3af;
    margin-bottom: 4px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        gap: 16px;
    }
    
    .nav-menu {
        order: 3;
        gap: 16px;
    }
    
    .nav-auth {
        gap: 8px;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-card {
        padding: 32px;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .access-links {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-links {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    .hero {
        padding: 40px 0;
    }
    
    .hero-card {
        padding: 24px;
    }
    
    .hero-title {
        font-size: 28px;
    }
    
    .section-title {
        font-size: 24px;
    }
    
    .about,
    .features,
    .access,
    .reviews {
        padding: 60px 0;
    }
    
    .access-links {
        grid-template-columns: 1fr;
    }
} 