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

:root {
    --orange-50: #fff7ed;
    --orange-100: #ffedd5;
    --orange-200: #fed7aa;
    --orange-300: #fdba74;
    --orange-400: #fb923c;
    --orange-500: #f97316;
    --orange-600: #ea580c;
    --orange-700: #c2410c;
    --orange-800: #9a3412;
    --orange-900: #7c2d12;
    
    --teal-400: #2dd4bf;
    --teal-500: #14b8a6;
    
    --bg-primary: #0c0c10;
    --bg-secondary: #111116;
    --bg-card: #18181f;
    --bg-card-hover: #1f1f28;
    
    --text-primary: #f4f4f5;
    --text-secondary: #a1a1aa;
    --text-muted: #71717a;
    
    --border-color: #27272a;
    --border-light: #3f3f46;
    
    --success: #22c55e;
    --warning: #eab308;
    --error: #ef4444;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
}

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

/* Hero */
.hero {
    padding: 80px 0;
    text-align: center;
    background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
    border-bottom: 1px solid var(--border-color);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(249, 115, 22, 0.1);
    border: 1px solid rgba(249, 115, 22, 0.3);
    border-radius: 24px;
    font-size: 12px;
    font-weight: 600;
    color: var(--orange-400);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 24px;
}

.pulse {
    width: 8px;
    height: 8px;
    background: var(--success);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

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

.hero h1 {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 12px;
    background: linear-gradient(135deg, var(--orange-400) 0%, var(--orange-600) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero .tagline {
    font-size: 1.5rem;
    color: var(--text-primary);
    margin-bottom: 8px;
    font-weight: 600;
}

.hero .subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto 32px;
}

.hero-image {
    position: relative;
    width: 300px;
    height: 300px;
    margin: 0 auto 32px;
}

.clawson-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid var(--orange-500);
    box-shadow: 0 0 60px rgba(249, 115, 22, 0.3);
}

.status-ring {
    position: absolute;
    inset: -10px;
    border: 2px solid var(--orange-400);
    border-radius: 50%;
    animation: rotate 10s linear infinite;
    border-top-color: transparent;
    border-left-color: transparent;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.token-info {
    display: flex;
    justify-content: center;
}

.token-badge {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 24px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
}

.token-symbol {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--orange-400);
    font-family: 'JetBrains Mono', monospace;
}

.token-network {
    padding: 4px 10px;
    background: rgba(45, 212, 191, 0.1);
    color: var(--teal-400);
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
}

/* Metrics */
.metrics {
    padding: 60px 0;
    background: var(--bg-secondary);
}

h2 {
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 8px;
}

.section-subtitle {
    text-align: center;
    color: var(--text-secondary);
    margin-bottom: 40px;
}

.metrics-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.metric-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 24px;
    text-align: center;
    transition: all 0.3s;
}

.metric-card:hover {
    transform: translateY(-4px);
    border-color: var(--orange-500);
}

.metric-card.highlight {
    border-color: var(--orange-500);
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.1) 0%, var(--bg-card) 100%);
}

.metric-value {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: var(--orange-400);
    margin-bottom: 8px;
    font-family: 'JetBrains Mono', monospace;
}

.metric-label {
    display: block;
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 12px;
}

.metric-status {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
}

.metric-status.safe { background: rgba(34, 197, 94, 0.2); color: var(--success); }
.metric-status.optimal { background: rgba(45, 212, 191, 0.2); color: var(--teal-400); }
.metric-status.active { background: rgba(34, 197, 94, 0.2); color: var(--success); }
.metric-status.token { background: rgba(249, 115, 22, 0.2); color: var(--orange-400); }

/* Status Cards */
.status-cards {
    padding: 40px 0;
}

.status-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.status-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 24px;
}

.status-card h3 {
    font-size: 1.1rem;
    margin-bottom: 12px;
}

.status-card.habitat h3 { color: var(--success); }
.status-card.blockchain h3 { color: var(--orange-400); }

.status-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* How It Works */
.how-it-works {
    padding: 80px 0;
    background: var(--bg-secondary);
}

.mechanism-diagram {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.mechanism-step {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 24px;
    text-align: center;
    width: 200px;
    position: relative;
}

.step-icon {
    font-size: 2rem;
    margin-bottom: 8px;
}

.step-number {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 28px;
    height: 28px;
    background: var(--orange-500);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    font-family: 'JetBrains Mono', monospace;
}

.mechanism-step h4 {
    font-size: 1rem;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.mechanism-step p {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.mechanism-arrow {
    font-size: 1.5rem;
    color: var(--orange-400);
    font-weight: bold;
}

/* Live Stream */
.live-stream {
    padding: 80px 0;
}

.stream-container {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 16px;
}

.stream-embed {
    aspect-ratio: 16/9;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    overflow: hidden;
}

.stream-embed iframe {
    border: none;
}

.stream-chat {
    height: 100%;
    min-height: 400px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    overflow: hidden;
}

.stream-chat iframe {
    border: none;
}

@media (max-width: 900px) {
    .stream-container {
        grid-template-columns: 1fr;
    }
    
    .stream-chat {
        min-height: 300px;
    }
}

/* Technical Specs */
.technical {
    padding: 80px 0;
    background: var(--bg-secondary);
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.tech-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 24px;
}

.tech-card h3 {
    font-size: 1.1rem;
    margin-bottom: 16px;
    color: var(--orange-400);
}

.spec-table {
    width: 100%;
    border-collapse: collapse;
}

.spec-table tr {
    border-bottom: 1px solid var(--border-color);
}

.spec-table tr:last-child {
    border-bottom: none;
}

.spec-table td {
    padding: 10px 0;
    font-size: 0.9rem;
}

.spec-table td:first-child {
    color: var(--text-muted);
    width: 45%;
}

.spec-table td:last-child {
    color: var(--text-primary);
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.85rem;
}

/* Token Mechanics */
.token-mechanics {
    padding: 80px 0;
}

.mechanics-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.mechanic-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 24px;
    text-align: center;
}

.mechanic-icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.mechanic-card h4 {
    font-size: 1.1rem;
    margin-bottom: 12px;
    color: var(--orange-400);
}

.mechanic-card p {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

/* Activity Feed */
.activity-feed {
    padding: 80px 0;
    background: var(--bg-secondary);
}

.feed-container {
    max-width: 800px;
    margin: 0 auto;
}

.feed-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    margin-bottom: 12px;
}

.feed-time {
    font-size: 0.85rem;
    color: var(--text-muted);
    min-width: 80px;
    font-family: 'JetBrains Mono', monospace;
}

.feed-type {
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 700;
    font-family: 'JetBrains Mono', monospace;
}

.feed-type.buy { background: rgba(34, 197, 94, 0.2); color: var(--success); }
.feed-type.feed { background: rgba(249, 115, 22, 0.2); color: var(--orange-400); }
.feed-type.status { background: rgba(45, 212, 191, 0.2); color: var(--teal-400); }

.feed-text {
    flex: 1;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

/* FAQ */
.faq {
    padding: 80px 0;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 16px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.faq-item h3 {
    color: var(--orange-400);
    font-size: 1.1rem;
    margin-bottom: 12px;
}

.faq-item p {
    color: var(--text-secondary);
}

/* CTA */
.cta {
    padding: 80px 0;
    background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
}

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

.cta h2 {
    margin-bottom: 12px;
}

.cta p {
    color: var(--text-secondary);
    margin-bottom: 32px;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: linear-gradient(135deg, var(--orange-500) 0%, var(--orange-600) 100%);
    color: white;
    box-shadow: 0 4px 20px rgba(249, 115, 22, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(249, 115, 22, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid var(--border-light);
}

.btn-secondary:hover {
    background: var(--bg-card);
    border-color: var(--orange-500);
}

/* Footer */
.footer {
    padding: 48px 0;
    border-top: 1px solid var(--border-color);
}

.footer-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 24px;
}

.footer-brand {
    font-size: 1.25rem;
    font-weight: 700;
}

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

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: var(--text-primary);
}

.footer-copy {
    width: 100%;
    text-align: center;
    padding-top: 24px;
    border-top: 1px solid var(--border-color);
}

.footer-copy p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.footer-note {
    font-size: 0.8rem !important;
    margin-top: 8px;
}

/* Responsive */
@media (max-width: 1024px) {
    .metrics-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .tech-grid {
        grid-template-columns: 1fr;
    }
    
    .mechanics-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero-image {
        width: 200px;
        height: 200px;
    }
    
    .metrics-grid {
        grid-template-columns: 1fr;
    }
    
    .status-grid {
        grid-template-columns: 1fr;
    }
    
    .mechanism-diagram {
        flex-direction: column;
    }
    
    .mechanism-arrow {
        transform: rotate(90deg);
    }
    
    .mechanism-step {
        width: 100%;
        max-width: 280px;
    }
    
    .mechanics-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
}
