/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #ffffff;
    --secondary: #0a0a0a;
    --accent: #22c55e;
    --muted: #a0a0a0;
    --bg: #111111;
    --border: #333333;
    --card-bg: rgba(255, 255, 255, 0.05);
    --glass-bg: rgba(34, 197, 94, 0.05);
}

body {
    font-family: 'Space Grotesk', sans-serif;
    background: linear-gradient(135deg, #0a0a0a 0%, #111111 50%, #0a0a0a 100%);
    background-attachment: fixed;
    color: var(--primary);
    line-height: 1.4;
    overflow-x: hidden;
    opacity: 1 !important;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 80%, rgba(34, 197, 94, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(34, 197, 94, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(34, 197, 94, 0.02) 0%, transparent 50%);
    pointer-events: none;
    z-index: -1;
}

/* Floating Icon */
.floating-icon {
    position: fixed;
    right: -50px;
    top: 50%;
    transform: translateY(-50%);
    width: 200px;
    height: 200px;
    opacity: 0.03;
    pointer-events: none;
    z-index: -1;
    transition: opacity 0.3s ease;
}

.floating-icon:hover {
    opacity: 0.08;
}

.floating-icon i {
    width: 100%;
    height: 100%;
    color: var(--accent);
}

/* Cursor Trail */
.cursor-trail {
    position: fixed;
    width: 20px;
    height: 20px;
    background: var(--accent);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.cursor-trail.active {
    opacity: 0.6;
}

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

.nav-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.brand-symbol {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary);
}

.brand-symbol i {
    width: 12px;
    height: 12px;
    stroke-width: 2;
}

.brand-logo {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.brand-text {
    font-weight: 700;
    font-size: 18px;
    letter-spacing: -0.5px;
}

.nav-links {
    display: flex;
    gap: 40px;
}

.nav-link {
    text-decoration: none;
    color: var(--primary);
    font-weight: 500;
    font-size: 14px;
    position: relative;
    transition: color 0.2s ease;
}

.nav-link:hover {
    color: var(--accent);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
}

.nav-toggle span {
    width: 20px;
    height: 2px;
    background: var(--primary);
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    padding: 120px 40px 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.hero-left {
    max-width: 600px;
}

.hero-badge {
    display: inline-block;
    background: var(--primary);
    color: var(--secondary);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 30px;
}

.hero-title {
    font-size: 64px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 40px;
    letter-spacing: -2px;
}

.title-line {
    display: block;
}

.title-line.highlight {
    color: var(--accent);
    position: relative;
}

.title-line.highlight::after {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 0;
    width: 100%;
    height: 8px;
    background: var(--accent);
    opacity: 0.2;
    z-index: -1;
}

.hero-stats {
    display: flex;
    gap: 60px;
    margin-bottom: 50px;
}

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

.stat-number {
    font-size: 32px;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 4px;
}

.stat-label {
    font-size: 14px;
    color: var(--muted);
    font-weight: 500;
}

.hero-actions {
    display: flex;
    gap: 20px;
}

.action-btn {
    padding: 16px 32px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
    display: inline-block;
}

.action-btn.primary {
    background: var(--primary);
    color: var(--secondary);
}

.action-btn.primary:hover {
    background: var(--accent);
    color: var(--primary);
    transform: translateY(-2px);
}

.action-btn.secondary {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.action-btn.secondary:hover {
    background: var(--primary);
    color: var(--secondary);
}

.hero-right {
    position: relative;
}

.property-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    max-width: 400px;
    margin: 0 auto;
}

.property-card {
    background: var(--secondary);
    border: 2px solid var(--border);
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
    cursor: pointer;
}

.property-card:hover {
    border-color: var(--accent);
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(34, 197, 94, 0.15);
    background: rgba(34, 197, 94, 0.03);
}

.property-card:hover .property-icon i {
    color: var(--accent);
    transform: scale(1.1);
}

.property-card::before {
    content: attr(data-price);
    position: absolute;
    top: -12px;
    right: 20px;
    background: var(--accent);
    color: var(--primary);
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
}

.property-icon {
    margin-bottom: 16px;
}

.property-icon i {
    width: 40px;
    height: 40px;
    stroke-width: 1.5;
    color: var(--muted);
    transition: all 0.3s ease;
}

.property-status {
    font-size: 14px;
    font-weight: 600;
    color: var(--muted);
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    color: var(--muted);
    font-size: 12px;
}

.scroll-line {
    width: 2px;
    height: 40px;
    background: var(--border);
    position: relative;
    overflow: hidden;
}

.scroll-line::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 20px;
    background: var(--accent);
    animation: scroll-animation 2s infinite;
}

@keyframes scroll-animation {
    0% {
        transform: translateY(-20px);
    }
    100% {
        transform: translateY(40px);
    }
}

/* Stats Section */
.stats {
    padding: 80px 40px;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border-top: 1px solid rgba(34, 197, 94, 0.1);
    border-bottom: 1px solid rgba(34, 197, 94, 0.1);
}

.stats-container {
    max-width: 1400px;
    margin: 0 auto;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.stat-card {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 30px;
    background: var(--card-bg);
    border: 2px solid var(--border);
    border-radius: 12px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.stat-card:hover {
    border-color: var(--accent);
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(34, 197, 94, 0.15);
    background: rgba(34, 197, 94, 0.03);
}

.stat-icon {
    width: 60px;
    height: 60px;
    background: var(--accent);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 0 15px rgba(34, 197, 94, 0.2);
}

.stat-icon i {
    width: 24px;
    height: 24px;
    color: var(--primary);
    stroke-width: 2;
}

.stat-content {
    flex: 1;
}

.stat-number {
    font-size: 32px;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 4px;
}

.stat-label {
    font-size: 14px;
    color: var(--muted);
    font-weight: 500;
}

/* Manifesto Section */
.manifesto {
    padding: 120px 40px;
    background: var(--card-bg);
    backdrop-filter: blur(20px);
}

.manifesto-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.manifesto-text h2 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 40px;
    letter-spacing: -1px;
}

.manifesto-paragraphs p {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 24px;
    color: var(--muted);
}

.manifesto-paragraphs p:last-child {
    color: var(--primary);
    font-weight: 600;
}

.acquisition-timeline {
    position: relative;
}

.timeline-item {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 40px;
    opacity: 0.5;
    transition: opacity 0.3s ease;
}

.timeline-item.active {
    opacity: 1;
}

.timeline-item:hover {
    opacity: 1;
}

.timeline-dot {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--border);
    flex-shrink: 0;
    position: relative;
}

.timeline-item.active .timeline-dot {
    background: var(--accent);
}

.timeline-item.active .timeline-dot::after {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    border: 2px solid var(--accent);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

.timeline-title {
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 4px;
}

.timeline-desc {
    font-size: 14px;
    color: var(--muted);
}

/* Properties Section */
.properties {
    padding: 120px 40px;
}

.properties-header {
    text-align: center;
    margin-bottom: 80px;
}

.properties-header h2 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.properties-header p {
    font-size: 18px;
    color: var(--muted);
}

.properties-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.property-item {
    background: var(--card-bg);
    border: 2px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.property-item:hover {
    border-color: var(--accent);
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(34, 197, 94, 0.15);
    background: rgba(34, 197, 94, 0.03);
}

.property-image {
    height: 200px;
    background: var(--bg);
    display: flex;
    align-items: center;
    justify-content: center;
}

.property-placeholder {
    opacity: 0.3;
}

.property-placeholder i {
    width: 60px;
    height: 60px;
    stroke-width: 1;
    color: var(--muted);
}

.property-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.property-info {
    padding: 24px;
}

.property-location {
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 8px;
}

.property-price {
    font-size: 24px;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 8px;
}

.property-status {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 20px;
    display: inline-block;
    margin-bottom: 12px;
}

.property-status.acquired {
    background: var(--accent);
    color: var(--primary);
}

.property-status.pending {
    background: #ffa500;
    color: var(--primary);
}

.property-status.target {
    background: var(--border);
    color: var(--muted);
}

.property-details {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.detail-item {
    font-size: 12px;
    color: var(--muted);
    background: var(--bg);
    padding: 4px 8px;
    border-radius: 8px;
}

.property-address {
    font-size: 12px;
    color: var(--muted);
    font-style: italic;
    margin-top: 8px;
}

/* Token Section */
.token {
    padding: 120px 40px;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border-top: 1px solid rgba(34, 197, 94, 0.1);
    border-bottom: 1px solid rgba(34, 197, 94, 0.1);
}

.token-content {
    max-width: 800px;
    margin: 0 auto;
    gap: 80px;
    align-items: center;
}

.token-info h2 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 40px;
    letter-spacing: -1px;
}

.token-details {
    margin-bottom: 40px;
}

.token-detail {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    border-bottom: 1px solid var(--border);
}

.token-detail:last-child {
    border-bottom: none;
}

.detail-label {
    font-size: 16px;
    color: var(--muted);
}

.detail-value {
    font-size: 24px;
    font-weight: 700;
    color: var(--accent);
}

.token-description p {
    font-size: 18px;
    line-height: 1.6;
    color: var(--muted);
}

.token-chart {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.chart-segment {
    background: var(--card-bg);
    border: 2px solid var(--border);
    border-radius: 12px;
    padding: 24px;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.chart-segment::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    background: var(--accent);
    opacity: 0.1;
    transition: width 1s ease;
}

.chart-segment[data-percentage="100"]::before {
    width: 100%;
}

.segment-label {
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 8px;
}

.segment-value {
    font-size: 24px;
    font-weight: 700;
    color: var(--accent);
}


/* FAQ Section */
.faq {
    padding: 120px 40px;
}

.faq-container {
    max-width: 1000px;
    margin: 0 auto;
}

.faq-header {
    text-align: center;
    margin-bottom: 80px;
}

.faq-header h2 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.faq-header p {
    font-size: 18px;
    color: var(--muted);
}

.faq-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.faq-item {
    background: var(--card-bg);
    border: 2px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.faq-item:hover {
    border-color: var(--accent);
    box-shadow: 0 10px 30px rgba(34, 197, 94, 0.1);
}

.faq-question {
    padding: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: var(--bg);
}

.faq-question i {
    width: 20px;
    height: 20px;
    color: var(--muted);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 24px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 0 24px 24px;
    max-height: 200px;
}

.faq-answer p {
    color: var(--muted);
    line-height: 1.6;
    margin: 0;
}

/* Join Section */
.join {
    padding: 120px 40px;
    text-align: center;
}

.join-content {
    max-width: 800px;
    margin: 0 auto;
}

.join-content h2 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.join-content p {
    font-size: 18px;
    color: var(--muted);
    margin-bottom: 60px;
}

.join-links {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 60px;
}

.join-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--primary);
    padding: 30px;
    border: 2px solid var(--border);
    border-radius: 12px;
    transition: all 0.3s ease;
    background: var(--card-bg);
    backdrop-filter: blur(10px);
}

.join-link:hover {
    border-color: var(--accent);
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(34, 197, 94, 0.15);
    background: rgba(34, 197, 94, 0.03);
}

.join-link:hover .link-icon i {
    color: var(--accent);
    transform: scale(1.1);
}

.link-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.link-icon i,
.link-icon svg {
    width: 32px;
    height: 32px;
    stroke-width: 1.5;
    color: var(--muted);
    transition: all 0.3s ease;
}

.link-icon svg path {
    fill: currentColor;
}

.link-text {
    font-weight: 600;
    font-size: 14px;
}

.join-disclaimer {
    padding-top: 40px;
    border-top: 1px solid var(--border);
}

.join-disclaimer p {
    font-size: 14px;
    color: var(--muted);
    margin: 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-grid,
    .manifesto-content,
    .token-content {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .hero-title {
        font-size: 48px;
    }
    
    .manifesto-text h2,
    .properties-header h2,
    .token-info h2,
    .join-content h2 {
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    .nav {
        padding: 20px;
    }
    
    .nav-links {
        display: none;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .hero {
        padding: 100px 20px 60px;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .hero-stats {
        gap: 40px;
    }
    
    .hero-actions {
        flex-direction: column;
    }
    
    .property-grid {
        grid-template-columns: 1fr;
        max-width: 300px;
    }
    
    .manifesto,
    .properties,
    .token,
    .join {
        padding: 80px 20px;
    }
    
    .join-links {
        flex-direction: column;
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 28px;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .manifesto-text h2,
    .properties-header h2,
    .token-info h2,
    .join-content h2 {
        font-size: 28px;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Selection styling */
::selection {
    background: var(--accent);
    color: var(--primary);
}

/* Focus styles */
button:focus,
a:focus {
    outline: 2px solid var(--accent);
    outline-offset: 2px;
}