/* Home page specific styles */

body {
    background: #000;
    margin: 0;
    padding: 0;
}

/* Site Header with Tagline */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: var(--spacing-md) var(--spacing-lg);
    background: linear-gradient(to bottom, rgba(0,0,0,0.6) 0%, transparent 100%);
}

.site-header-brand {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    text-decoration: none;
    color: white;
    font-weight: 800;
    font-size: var(--font-size-xl);
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.site-header-brand svg {
    flex-shrink: 0;
}

.site-header-brand .brand-short {
    display: none;
}

.site-header-brand .brand-full {
    display: inline;
}

.site-header-tagline {
    font-size: var(--font-size-sm);
    color: rgba(255, 255, 255, 0.7);
    margin-top: var(--spacing-xs);
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 500;
}

@media (max-width: 768px) {
    .site-header-brand .brand-short {
        display: inline;
    }

    .site-header-brand .brand-full {
        display: none;
    }

    .site-header-tagline {
        font-size: 10px;
        letter-spacing: 1px;
    }
}

/* Split Hero - Two Modes */
.split-hero {
    display: flex;
    min-height: 100vh;
    position: relative;
}

.hero-half {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--spacing-xl) var(--spacing-xl);
    padding-top: 100px;
    position: relative;
    overflow: hidden;
}

/* Anonymous/Dark Side with noise texture */
.anonymous-half {
    background: linear-gradient(135deg, rgba(20, 20, 30, 0.95) 0%, rgba(30, 20, 40, 0.95) 100%);
}

.anonymous-half::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 30% 40%, rgba(139, 92, 246, 0.15) 0%, transparent 60%),
        radial-gradient(circle at 70% 70%, rgba(59, 130, 246, 0.1) 0%, transparent 60%);
    pointer-events: none;
}

.anonymous-half::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    opacity: 0.03;
    pointer-events: none;
}

/* Public/Light Side with grid pattern */
.public-half {
    background: linear-gradient(135deg, rgba(248, 250, 252, 0.98) 0%, rgba(239, 246, 255, 0.98) 100%);
}

.public-half::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 30% 40%, rgba(59, 130, 246, 0.08) 0%, transparent 60%),
        radial-gradient(circle at 70% 70%, rgba(96, 165, 250, 0.06) 0%, transparent 60%);
    pointer-events: none;
}

.public-half::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        linear-gradient(rgba(59, 130, 246, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(59, 130, 246, 0.03) 1px, transparent 1px);
    background-size: 40px 40px;
    pointer-events: none;
}

.half-content {
    position: relative;
    z-index: 2;
    max-width: 450px;
}

.anonymous-half .half-content {
    text-align: left;
    padding-right: var(--spacing-xl);
}

.public-half .half-content {
    text-align: right;
    padding-left: var(--spacing-xl);
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.site-badge {
    display: inline-block;
    padding: var(--spacing-xs) var(--spacing-md);
    border-radius: 100px;
    font-size: var(--font-size-sm);
    font-weight: 600;
    margin-bottom: var(--spacing-lg);
    letter-spacing: 0.5px;
}

.anonymous-half .site-badge {
    background: rgba(139, 92, 246, 0.2);
    border: 1px solid rgba(139, 92, 246, 0.4);
    color: #c4b5fd;
}

.public-half .site-badge {
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.3);
    color: #3b82f6;
}

.half-icon {
    margin-bottom: var(--spacing-lg);
}

.anonymous-half .half-icon {
    color: #c4b5fd;
    filter: drop-shadow(0 0 20px rgba(139, 92, 246, 0.5));
}

.public-half .half-icon {
    color: #3b82f6;
    filter: drop-shadow(0 0 20px rgba(59, 130, 246, 0.3));
}

.half-title {
    font-size: var(--font-size-4xl);
    font-weight: 900;
    margin: 0 0 var(--spacing-md) 0;
    line-height: 1.1;
}

.anonymous-half .half-title {
    color: white;
    text-shadow: 0 2px 30px rgba(139, 92, 246, 0.5);
}

.public-half .half-title {
    color: #1e293b;
    text-shadow: 0 2px 20px rgba(59, 130, 246, 0.2);
}

.half-description {
    font-size: var(--font-size-lg);
    margin: 0 0 var(--spacing-lg) 0;
    line-height: 1.7;
}

.anonymous-half .half-description {
    color: #d1d5db;
}

.public-half .half-description {
    color: #475569;
}

/* Live Activity Indicator */
.live-activity {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-sm) var(--spacing-md);
    border-radius: var(--border-radius);
    margin-bottom: var(--spacing-lg);
    font-size: var(--font-size-sm);
}

.anonymous-half .live-activity {
    background: rgba(139, 92, 246, 0.1);
    border: 1px solid rgba(139, 92, 246, 0.2);
    color: #c4b5fd;
}

.public-half .live-activity {
    background: rgba(59, 130, 246, 0.08);
    border: 1px solid rgba(59, 130, 246, 0.2);
    color: #3b82f6;
    justify-content: center;
    margin-left: auto;
}

.live-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    animation: live-pulse 2s ease-in-out infinite;
}

.anonymous-half .live-dot {
    background: #8b5cf6;
    box-shadow: 0 0 10px rgba(139, 92, 246, 0.8);
}

.public-half .live-dot {
    background: #3b82f6;
    box-shadow: 0 0 10px rgba(59, 130, 246, 0.6);
}

@keyframes live-pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.2); }
}

.half-features {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-xl);
}

.public-half .half-features {
    align-items: flex-end;
}

.public-half .live-activity,
.public-half .feature-tag {
    width: 320px;
    box-sizing: border-box;
}

.feature-tag {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    padding: var(--spacing-sm) var(--spacing-md);
    border-radius: var(--border-radius);
    font-size: var(--font-size-sm);
    font-weight: 600;
}

.feature-tag svg {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
    opacity: 0.7;
}

.anonymous-half .feature-tag {
    background: rgba(139, 92, 246, 0.15);
    border: 1px solid rgba(139, 92, 246, 0.3);
    color: #e9d5ff;
}

.public-half .feature-tag {
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.2);
    color: #1e40af;
}

.hero-cta-button {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-md) var(--spacing-xl);
    font-size: var(--font-size-lg);
    font-weight: 700;
    text-decoration: none;
    border-radius: var(--border-radius-lg);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.anonymous-button {
    background: linear-gradient(135deg, #8b5cf6 0%, #6366f1 100%);
    color: white;
    box-shadow: 0 10px 40px rgba(139, 92, 246, 0.4);
}

.anonymous-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 50px rgba(139, 92, 246, 0.6);
    background: linear-gradient(135deg, #9333ea 0%, #6366f1 100%);
}

.public-button {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    color: white;
    box-shadow: 0 10px 40px rgba(59, 130, 246, 0.4);
}

.public-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 50px rgba(59, 130, 246, 0.6);
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
}

/* Center Divider */
.hero-divider {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
}

.divider-logo {
    background: white;
    border-radius: 50%;
    padding: 12px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.15);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: var(--spacing-xl);
    left: 50%;
    transform: translateX(-50%);
    z-index: 20;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-xs);
    color: rgba(255, 255, 255, 0.6);
    font-size: var(--font-size-sm);
    cursor: pointer;
    transition: all 0.3s ease;
}

.scroll-indicator:hover {
    color: rgba(255, 255, 255, 0.9);
}

.scroll-indicator span {
    font-weight: 500;
    letter-spacing: 1px;
}

.scroll-arrow {
    animation: bounce-arrow 2s ease-in-out infinite;
}

@keyframes bounce-arrow {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(8px); }
}

/* Social Proof Section */
.social-proof {
    padding: var(--spacing-2xl) var(--spacing-lg);
    background: linear-gradient(135deg, #1e1e2f 0%, #2d2d44 100%);
    position: relative;
    overflow: hidden;
}

.social-proof::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    opacity: 0.03;
    pointer-events: none;
}

.social-proof-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.social-proof-label {
    font-size: var(--font-size-sm);
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(139, 92, 246, 0.8);
    margin-bottom: var(--spacing-md);
    font-weight: 600;
}

.social-proof-quote {
    font-size: var(--font-size-xl);
    color: rgba(255, 255, 255, 0.9);
    font-style: italic;
    line-height: 1.7;
    margin: 0 0 var(--spacing-lg) 0;
}

.social-proof-quote::before {
    content: '"';
    font-size: var(--font-size-4xl);
    color: rgba(139, 92, 246, 0.4);
    display: block;
    line-height: 0.5;
    margin-bottom: var(--spacing-md);
}

.social-proof-meta {
    color: rgba(255, 255, 255, 0.5);
    font-size: var(--font-size-sm);
}

.social-proof-meta a {
    color: rgba(139, 92, 246, 0.8);
    text-decoration: none;
    transition: color 0.2s ease;
}

.social-proof-meta a:hover {
    color: #8b5cf6;
}

/* Mission Section */
.mission-section {
    padding: var(--spacing-3xl) var(--spacing-lg);
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

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

.mission-icon {
    margin-bottom: var(--spacing-lg);
}

.mission-title {
    font-size: var(--font-size-3xl);
    font-weight: 800;
    color: var(--color-neutral-900);
    margin: 0 0 var(--spacing-lg) 0;
}

.mission-statement {
    font-size: var(--font-size-xl);
    color: var(--color-neutral-600);
    line-height: 1.8;
    margin: 0 0 var(--spacing-2xl) 0;
}

.mission-statement em {
    color: #6366f1;
    font-style: normal;
    font-weight: 600;
}

.mission-pillars {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-xl);
    text-align: left;
}

.mission-pillar {
    padding: var(--spacing-lg);
    background: white;
    border-radius: var(--border-radius-lg);
    border: 1px solid var(--color-neutral-200);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
}

.pillar-number {
    font-size: var(--font-size-sm);
    font-weight: 700;
    color: #6366f1;
    margin-bottom: var(--spacing-sm);
    letter-spacing: 1px;
}

.pillar-content h3 {
    font-size: var(--font-size-lg);
    font-weight: 700;
    color: var(--color-neutral-900);
    margin: 0 0 var(--spacing-sm) 0;
}

.pillar-content p {
    font-size: var(--font-size-sm);
    color: var(--color-neutral-600);
    line-height: 1.6;
    margin: 0;
}

/* How It Works Section */
.how-section {
    padding: var(--spacing-3xl) var(--spacing-lg);
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
    position: relative;
}

.how-content {
    max-width: 1100px;
    margin: 0 auto;
}

.how-header {
    text-align: center;
    margin-bottom: var(--spacing-3xl);
}

.how-header h2 {
    font-size: var(--font-size-3xl);
    font-weight: 800;
    color: var(--color-neutral-900);
    margin: 0 0 var(--spacing-sm) 0;
}

.how-header p {
    font-size: var(--font-size-lg);
    color: var(--color-neutral-600);
    margin: 0;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.how-paths {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
}

.how-path {
    position: relative;
    padding: var(--spacing-xl);
    border-radius: var(--border-radius-lg);
}

.how-path-anonymous {
    background: linear-gradient(135deg, #1e1e2f 0%, #2d2d44 100%);
}

.how-path-public {
    background: white;
    border: 1px solid var(--color-neutral-200);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.how-path-header {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
    padding-bottom: var(--spacing-md);
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.how-path-public .how-path-header {
    border-bottom-color: var(--color-neutral-200);
}

.how-path-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.how-path-anonymous .how-path-icon {
    background: rgba(139, 92, 246, 0.2);
    color: #c4b5fd;
}

.how-path-public .how-path-icon {
    background: rgba(59, 130, 246, 0.1);
    color: #3b82f6;
}

.how-path-title {
    font-size: var(--font-size-xl);
    font-weight: 700;
    margin: 0;
}

.how-path-anonymous .how-path-title {
    color: white;
}

.how-path-public .how-path-title {
    color: var(--color-neutral-900);
}

.how-steps {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
}

.how-step {
    display: flex;
    gap: var(--spacing-md);
}

.how-step-number {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: var(--font-size-sm);
    flex-shrink: 0;
}

.how-path-anonymous .how-step-number {
    background: rgba(139, 92, 246, 0.3);
    color: #e9d5ff;
}

.how-path-public .how-step-number {
    background: rgba(59, 130, 246, 0.15);
    color: #2563eb;
}

.how-step-content h4 {
    font-size: var(--font-size-base);
    font-weight: 600;
    margin: 0 0 var(--spacing-xs) 0;
}

.how-path-anonymous .how-step-content h4 {
    color: white;
}

.how-path-public .how-step-content h4 {
    color: var(--color-neutral-900);
}

.how-step-content p {
    font-size: var(--font-size-sm);
    margin: 0;
    line-height: 1.5;
}

.how-path-anonymous .how-step-content p {
    color: rgba(255, 255, 255, 0.7);
}

.how-path-public .how-step-content p {
    color: var(--color-neutral-600);
}

.how-path-cta {
    margin-top: var(--spacing-xl);
    padding-top: var(--spacing-lg);
    border-top: 1px solid rgba(255,255,255,0.1);
}

.how-path-public .how-path-cta {
    border-top-color: var(--color-neutral-200);
}

.how-path-cta a {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-sm);
    font-weight: 600;
    text-decoration: none;
    font-size: var(--font-size-base);
    transition: all 0.2s ease;
}

.how-path-anonymous .how-path-cta a {
    color: #c4b5fd;
}

.how-path-anonymous .how-path-cta a:hover {
    color: #e9d5ff;
}

.how-path-public .how-path-cta a {
    color: #3b82f6;
}

.how-path-public .how-path-cta a:hover {
    color: #2563eb;
}

/* Stats Section */
.stats-section {
    padding: var(--spacing-2xl) var(--spacing-lg);
    background: var(--color-neutral-50);
    border-top: 1px solid var(--color-neutral-200);
    border-bottom: 1px solid var(--color-neutral-200);
}

.stats-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    gap: var(--spacing-3xl);
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

.stat-value {
    font-size: var(--font-size-4xl);
    font-weight: 800;
    color: var(--color-neutral-900);
    display: block;
}

.stat-label {
    font-size: var(--font-size-sm);
    color: var(--color-neutral-500);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Site Footer */
.site-footer {
    background-color: var(--color-neutral-900);
    color: var(--color-neutral-400);
    text-align: center;
    padding: var(--spacing-xl);
}

.site-footer p {
    margin: 0;
}

/* Beta Notice Banner */
.beta-banner {
    position: fixed;
    bottom: var(--spacing-lg);
    left: 50%;
    transform: translateX(-50%) translateY(0);
    z-index: 200;
    background: rgba(20, 20, 30, 0.9);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(139, 92, 246, 0.3);
    color: rgba(255, 255, 255, 0.9);
    padding: var(--spacing-sm) var(--spacing-lg);
    padding-right: var(--spacing-xl);
    border-radius: 100px;
    font-size: var(--font-size-sm);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(139, 92, 246, 0.1);
    animation: banner-slide-in 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    opacity: 0;
}

@keyframes banner-slide-in {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

.beta-banner.hiding {
    animation: banner-slide-out 0.3s cubic-bezier(0.4, 0, 1, 1) forwards;
}

@keyframes banner-slide-out {
    from {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
    to {
        opacity: 0;
        transform: translateX(-50%) translateY(20px);
    }
}

.beta-banner-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.3) 0%, rgba(99, 102, 241, 0.3) 100%);
    flex-shrink: 0;
    animation: icon-pulse 3s ease-in-out infinite;
}

@keyframes icon-pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(139, 92, 246, 0.4); }
    50% { box-shadow: 0 0 0 6px rgba(139, 92, 246, 0); }
}

.beta-banner-icon svg {
    width: 14px;
    height: 14px;
    color: #c4b5fd;
}

.beta-banner-text {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    letter-spacing: 0.2px;
}

.beta-banner-label {
    background: linear-gradient(135deg, #8b5cf6 0%, #6366f1 100%);
    color: white;
    padding: 2px 8px;
    border-radius: 100px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.beta-banner-dismiss {
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    padding: 6px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.beta-banner-dismiss:hover {
    color: rgba(255, 255, 255, 0.9);
    background: rgba(255, 255, 255, 0.1);
}

@media (max-width: 768px) {
    .beta-banner {
        bottom: var(--spacing-md);
        font-size: 12px;
        padding: var(--spacing-xs) var(--spacing-md);
        padding-right: var(--spacing-lg);
        max-width: calc(100% - var(--spacing-lg) * 2);
    }

    .beta-banner-label {
        display: none;
    }
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-divider {
        display: none;
    }

    .how-paths {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .split-hero {
        flex-direction: column;
    }

    .hero-half {
        min-height: auto;
        padding: var(--spacing-xl) var(--spacing-md);
        padding-top: 100px;
        padding-bottom: var(--spacing-2xl);
    }

    .hero-half:last-of-type {
        padding-top: var(--spacing-xl);
    }

    .anonymous-half .half-content,
    .public-half .half-content {
        text-align: center;
        padding: 0;
    }

    .public-half .half-features {
        align-items: center;
    }

    .public-half .live-activity {
        justify-content: center;
    }

    .half-title {
        font-size: var(--font-size-3xl);
    }

    .half-description {
        font-size: var(--font-size-base);
    }

    .hero-cta-button {
        width: 100%;
        justify-content: center;
    }

    .scroll-indicator {
        display: none;
    }

    .how-header h2 {
        font-size: var(--font-size-2xl);
    }

    .stats-content {
        gap: var(--spacing-xl);
    }

    .stat-value {
        font-size: var(--font-size-3xl);
    }

    .social-proof-quote {
        font-size: var(--font-size-lg);
    }

    .mission-title {
        font-size: var(--font-size-2xl);
    }

    .mission-statement {
        font-size: var(--font-size-lg);
    }

    .mission-pillars {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }
}
