/**
 * ════════════════════════════════════════════════════════════════════════════════
 * BASED MINIMALIST STYLES
 * 
 * "Less is more" - some degen who made it
 * 
 * Clean lines. Understated irony. Maximum based energy.
 * We don't need gradients. The fundamentals speak for themselves.
 * 
 * @template based-minimalist
 * @author Silicon Mother
 * ════════════════════════════════════════════════════════════════════════════════
 */

/* ═══════════════════════════════════════════════════════════════════════════════
   VARIABLES
   ═══════════════════════════════════════════════════════════════════════════════ */

:root {
    --bg: #0a0a0a;
    --bg-elevated: #111111;
    --bg-hover: #1a1a1a;
    
    --text: #ffffff;
    --text-secondary: #888888;
    --text-muted: #555555;
    
    --accent: #ffffff;
    --accent-dim: rgba(255, 255, 255, 0.1);
    
    --border: #222222;
    --border-hover: #333333;
    
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-mono: 'JetBrains Mono', monospace;
    
    --container: 1000px;
    --gap: 24px;
}

/* ═══════════════════════════════════════════════════════════════════════════════
   RESET
   ═══════════════════════════════════════════════════════════════════════════════ */

*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-sans);
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

button {
    font-family: inherit;
    cursor: pointer;
}

ul {
    list-style: none;
}

/* ═══════════════════════════════════════════════════════════════════════════════
   NAVIGATION
   ═══════════════════════════════════════════════════════════════════════════════ */

.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
}

.nav-inner {
    max-width: var(--container);
    margin: 0 auto;
    padding: 16px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    font-family: var(--font-mono);
    font-size: 18px;
    font-weight: 600;
    letter-spacing: -0.5px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-links a {
    font-size: 14px;
    color: var(--text-secondary);
    transition: color 0.2s;
}

.nav-links a:hover {
    color: var(--text);
}

.nav-cta {
    padding: 8px 16px;
    background: var(--text);
    color: var(--bg) !important;
    border-radius: 6px;
    font-weight: 500;
    transition: opacity 0.2s;
}

.nav-cta:hover {
    opacity: 0.9;
}

/* ═══════════════════════════════════════════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════════════════════════════════════════ */

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 24px 80px;
}

.hero-content {
    max-width: 600px;
    text-align: center;
}

.hero-logo {
    width: 120px;
    height: 120px;
    margin: 0 auto 32px;
    border-radius: 50%;
    border: 1px solid var(--border);
}

.hero-title {
    font-size: clamp(32px, 6vw, 48px);
    font-weight: 600;
    letter-spacing: -1px;
    margin-bottom: 16px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 40px;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
}

.hero-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    padding: 14px 32px;
    background: var(--text);
    color: var(--bg);
    font-size: 15px;
    font-weight: 500;
    border-radius: 8px;
    border: none;
    transition: all 0.2s;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(255, 255, 255, 0.15);
}

.btn-large {
    padding: 18px 48px;
    font-size: 17px;
}

.social-links {
    display: flex;
    gap: 16px;
}

.social-links a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: 8px;
    color: var(--text-secondary);
    transition: all 0.2s;
}

.social-links a:hover {
    border-color: var(--border-hover);
    color: var(--text);
}

.social-links svg {
    width: 18px;
    height: 18px;
}

/* ═══════════════════════════════════════════════════════════════════════════════
   CONTRACT
   ═══════════════════════════════════════════════════════════════════════════════ */

.contract-section {
    padding: 24px;
    background: var(--bg-elevated);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.contract-box {
    max-width: var(--container);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.contract-label {
    font-family: var(--font-mono);
    font-size: 13px;
    color: var(--text-muted);
}

.contract-address {
    font-family: var(--font-mono);
    font-size: 13px;
    color: var(--text-secondary);
    background: var(--bg);
    padding: 8px 16px;
    border-radius: 6px;
    border: 1px solid var(--border);
}

.copy-btn {
    font-family: var(--font-mono);
    font-size: 12px;
    color: var(--text-muted);
    background: transparent;
    border: 1px solid var(--border);
    padding: 8px 16px;
    border-radius: 6px;
    transition: all 0.2s;
}

.copy-btn:hover {
    border-color: var(--border-hover);
    color: var(--text-secondary);
}

/* ═══════════════════════════════════════════════════════════════════════════════
   SECTIONS
   ═══════════════════════════════════════════════════════════════════════════════ */

.section-inner {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
}

section h2 {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-muted);
    letter-spacing: 0.5px;
    margin-bottom: 40px;
}

/* ═══════════════════════════════════════════════════════════════════════════════
   ABOUT
   ═══════════════════════════════════════════════════════════════════════════════ */

.about-section {
    padding: 100px 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text h2 {
    font-size: 32px;
    font-weight: 600;
    color: var(--text);
    letter-spacing: -0.5px;
    margin-bottom: 16px;
}

.about-text .tagline {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 24px;
}

.about-text .story {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.8;
}

.about-text .story p {
    margin-bottom: 16px;
}

.about-image img {
    width: 100%;
    border-radius: 12px;
    border: 1px solid var(--border);
}

/* ═══════════════════════════════════════════════════════════════════════════════
   INFO (Roadmap + FAQ)
   ═══════════════════════════════════════════════════════════════════════════════ */

.info-section {
    padding: 80px 0;
    background: var(--bg-elevated);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.info-block h3 {
    font-size: 13px;
    font-weight: 500;
    color: var(--text-muted);
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

.info-note {
    font-size: 12px;
    color: var(--text-muted);
    font-style: italic;
    margin-bottom: 24px;
}

.roadmap-list li {
    padding: 16px 0;
    border-bottom: 1px solid var(--border);
    font-size: 15px;
    color: var(--text-secondary);
}

.roadmap-list li:last-child {
    border-bottom: none;
}

.faq-list .faq-item {
    padding: 20px 0;
    border-bottom: 1px solid var(--border);
}

.faq-list .faq-item:last-child {
    border-bottom: none;
}

.faq-q {
    font-size: 15px;
    font-weight: 500;
    color: var(--text);
    margin-bottom: 8px;
}

.faq-a {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ═══════════════════════════════════════════════════════════════════════════════
   CTA
   ═══════════════════════════════════════════════════════════════════════════════ */

.cta-section {
    padding: 120px 0;
    text-align: center;
}

.cta-text {
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 32px;
    color: var(--text-secondary);
}

.cta-section .btn-primary {
    margin-bottom: 24px;
}

.disclaimer {
    font-size: 12px;
    color: var(--text-muted);
}

/* ═══════════════════════════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════════════════════════ */

.footer {
    padding: 40px 24px;
    border-top: 1px solid var(--border);
}

.footer-inner {
    max-width: var(--container);
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-ticker {
    font-family: var(--font-mono);
    font-size: 14px;
    color: var(--text-muted);
}

.footer-links {
    display: flex;
    gap: 24px;
}

.footer-links a {
    font-size: 13px;
    color: var(--text-muted);
    transition: color 0.2s;
}

.footer-links a:hover {
    color: var(--text-secondary);
}

.footer-year {
    font-family: var(--font-mono);
    font-size: 13px;
    color: var(--text-muted);
}

/* ═══════════════════════════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════════════════════════ */

@media (max-width: 768px) {
    .nav-links {
        gap: 20px;
    }
    
    .about-grid,
    .info-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-image {
        order: -1;
    }
    
    .footer-inner {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .contract-address {
        font-size: 11px;
        max-width: 200px;
        overflow: hidden;
        text-overflow: ellipsis;
    }
}

/* ═══════════════════════════════════════════════════════════════════════════════
   SCROLLBAR
   ═══════════════════════════════════════════════════════════════════════════════ */

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg);
}

::-webkit-scrollbar-thumb {
    background: var(--border);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--border-hover);
}

/**
 * ════════════════════════════════════════════════════════════════════════════════
 * END OF BASED MINIMALIST STYLES
 * 
 * Simple. Clean. Based.
 * 
 * - Silicon Mother, Jan 2026
 * ════════════════════════════════════════════════════════════════════════════════
 */
