/* Base Styles */
:root {
    --bg-color: #2A1610;
    --bg-light: #1A0D09;
    --accent-red: #da2535; /* legacy name, unused or remapped below */
    --accent-main: #b26529; 
    --accent-glow: rgba(178, 101, 41, 0.4);
    --accent-teal: #8DC0B8;
    --text-main: #ffffff;
    --text-muted: #EADDCA;
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.08);
}

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

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

/* Background Effects */
.blob {
    position: fixed;
    border-radius: 50%;
    z-index: -1;
    filter: blur(140px);
}
.blob-1 {
    top: -20%;
    left: -10%;
    width: 60vw;
    height: 60vh;
    background: radial-gradient(circle, rgba(178, 101, 41, 0.35) 0%, transparent 60%);
    animation: float 10s ease-in-out infinite alternate;
}
.blob-2 {
    bottom: -20%;
    right: -10%;
    width: 50vw;
    height: 50vh;
    background: radial-gradient(circle, rgba(141, 192, 184, 0.25) 0%, transparent 60%);
    animation: float 14s ease-in-out infinite alternate-reverse;
}

@keyframes float {
    0% { transform: scale(1) translate(0, 0); opacity: 0.6; }
    33% { transform: scale(1.05) translate(20px, -20px); opacity: 0.8; }
    100% { transform: scale(1) translate(-20px, 20px); opacity: 1; }
}

/* Typography */
h1, h2, h3, h4 {
    font-weight: 800;
    line-height: 1.2;
}

.giant-quote {
    font-size: clamp(3rem, 6vw, 6rem);
    font-weight: 900;
    text-transform: lowercase;
    letter-spacing: -0.02em;
    margin: 2rem 0;
}

.highlight {
    background: linear-gradient(90deg, #b26529, #e09863, #8DC0B8, #b26529);
    background-size: 300% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    animation: textShine 6s linear infinite;
}

.highlight-text {
    color: #fff;
    font-weight: 600;
    font-size: 1.3rem !important;
}

.lead-text {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    color: var(--text-muted);
    font-weight: 300;
}

.mt-4 {
    margin-top: 1.5rem;
}
.mb-4 {
    margin-bottom: 2rem;
}

/* Layout Utilities */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.container-narrow {
    max-width: 800px;
}

.section-padding {
    padding: 6rem 0;
}

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

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 1.5rem 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(42, 22, 16, 0.85);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid var(--glass-border);
    padding: 1rem 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 2rem;
    font-weight: 900;
    letter-spacing: 2px;
    background: linear-gradient(90deg, #fff, var(--text-muted));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    background: var(--glass-bg);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(10px);
}

.nav-links a {
    color: var(--text-main);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    text-transform: lowercase;
    letter-spacing: 1px;
}

.nav-links a:hover {
    color: var(--accent-teal);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.8rem 1.8rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 800;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    border: none;
    font-family: inherit;
    font-size: 1rem;
    letter-spacing: 0.5px;
    text-transform: lowercase;
}

.btn-primary {
    background: var(--accent-main);
    color: white;
    box-shadow: 0 4px 15px var(--accent-glow);
    animation: buttonPulse 2s infinite;
}

@keyframes buttonPulse {
    0% { box-shadow: 0 0 0 0 rgba(178, 101, 41, 0.5); }
    70% { box-shadow: 0 0 0 15px rgba(178, 101, 41, 0); }
    100% { box-shadow: 0 0 0 0 rgba(178, 101, 41, 0); }
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 25px rgba(178, 101, 41, 0.7);
    background: #ce7633;
    animation: none; /* Stop pulse on hover */
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 100px;
}

.hero-content {
    max-width: 900px;
    padding: 0 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-image-wrapper {
    margin-bottom: -1rem;
    width: 100%;
    max-width: 400px;
    filter: drop-shadow(0 20px 30px rgba(0,0,0,0.5));
}
.hero-img-main {
    width: 100%;
    height: auto;
    border-radius: 20px;
    mask-image: linear-gradient(to bottom, black 80%, transparent 100%);
    -webkit-mask-image: linear-gradient(to bottom, black 80%, transparent 100%);
    animation: heroFloat 6s ease-in-out infinite;
}

@keyframes heroFloat {
    0% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0); }
}

.hero-title {
    font-size: clamp(3.5rem, 8vw, 7rem);
    font-weight: 900;
    letter-spacing: -0.03em;
    line-height: 1.1;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #ffffff 20%, #EADDCA 40%, #ffffff 60%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 10px 40px rgba(0,0,0,0.5);
    animation: textShine 4s linear infinite;
}

@keyframes textShine {
    to { background-position: 200% center; }
}

.hero-subtitle {
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    color: var(--text-muted);
    font-weight: 400;
    max-width: 600px;
}

.ca-container {
    margin-top: 3rem;
    background: rgba(0,0,0,0.4);
    padding: 1.5rem 2rem;
    border-radius: 20px;
    border: 1px solid var(--glass-border);
    border-top-color: rgba(255,255,255,0.15);
    backdrop-filter: blur(20px);
}

.ca-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 0.8rem;
    text-transform: lowercase;
    letter-spacing: 2px;
    font-weight: 600;
}

.ca-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    background: rgba(0,0,0,0.5);
    border: 1px solid rgba(255,255,255,0.05);
    padding: 1rem 1.5rem;
    border-radius: 12px;
}

#contract-address {
    font-family: monospace;
    font-size: clamp(0.9rem, 1.5vw, 1.2rem);
    color: #fff;
    letter-spacing: 1px;
    word-break: break-all;
}

.copy-btn {
    background: rgba(141, 192, 184, 0.1);
    border: 1px solid rgba(141, 192, 184, 0.3);
    border-radius: 8px;
    padding: 0.6rem;
    color: var(--accent-teal);
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.copy-btn:hover {
    transform: scale(1.1) rotate(5deg);
    background: var(--accent-teal);
    color: #1A0D09;
}

.copy-btn:active {
    transform: scale(0.95);
}

/* Marquee / Brand Strip */
.brand-strip {
    background: var(--accent-main);
    padding: 1.5rem 0;
    transform: rotate(-2deg) scale(1.05);
    margin: 4rem 0;
    box-shadow: 0 10px 40px var(--accent-glow);
    overflow: hidden;
    position: relative;
    z-index: 10;
}

.marquee {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
}

.marquee-content {
    display: inline-block;
    animation: marquee 20s linear infinite;
    font-size: 1.5rem;
    font-weight: 900;
    color: #fff;
    letter-spacing: 2px;
}
.marquee-content span {
    margin: 0 2rem;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Sections */
.section-heading {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    margin-bottom: 2rem;
    text-shadow: 0 5px 20px rgba(0,0,0,0.5);
}

.mindset-dual {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.mindset-text p {
    text-align: left;
}

.glass-img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.6);
    border: 1px solid var(--glass-border);
    transition: transform 0.5s ease;
}
.glass-img:hover {
    transform: scale(1.02);
}

.giant-ticker {
    font-size: clamp(3.5rem, 10vw, 8rem);
    font-weight: 900;
    text-transform: lowercase;
    letter-spacing: -0.04em;
    line-height: 1;
    background: linear-gradient(135deg, var(--text-main) 20%, var(--accent-main) 50%, var(--accent-teal) 80%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 10px 30px rgba(0,0,0,0.6);
    animation: textShine 5s linear infinite reverse;
    display: inline-block;
}

/* Bento Grid */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 250px;
    gap: 1.5rem;
    padding-top: 2rem;
}

.bento-item {
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    border: 1px solid var(--glass-border);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.bento-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.bento-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(178, 101, 41, 0.3);
    border-color: rgba(255,255,255,0.2);
    z-index: 2;
}

.bento-item:hover img {
    transform: scale(1.1);
}

.img-large {
    grid-column: span 2;
    grid-row: span 2;
}

.img-wide {
    grid-column: span 2;
}

/* Footer */
.footer {
    padding: 6rem 0 3rem;
    background: var(--bg-light);
    border-top: 1px solid var(--glass-border);
    position: relative;
}

.footer-graphic {
    max-width: 300px;
    opacity: 0.8;
    margin: 0 auto 2rem;
    display: block;
}

.footer-title {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.social-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.social-icon svg {
    width: 24px;
    height: 24px;
}

.social-icon img {
    width: 28px;
    height: 28px;
    object-fit: contain;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
    transition: transform 0.3s ease;
}

.social-icon:hover {
    background: var(--accent-main);
    border-color: var(--accent-main);
    transform: translateY(-8px);
    box-shadow: 0 15px 30px var(--accent-glow);
}

.trading-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 4rem;
    flex-wrap: wrap;
}

.btn-trading {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    color: white;
}

.btn-trading:hover {
    background: rgba(255,255,255,0.15);
    transform: translateY(-3px);
    border-color: rgba(255,255,255,0.3);
}

.copyright {
    text-align: center;
    color: rgba(255,255,255,0.3);
    font-size: 0.95rem;
}

/* Animations */
.scroll-element {
    opacity: 0;
    transition: all 1s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.fade-in-up {
    transform: translateY(40px);
}
.fade-in-left {
    transform: translateX(-40px);
}
.fade-in-right {
    transform: translateX(40px);
}

.scroll-element.scrolled {
    opacity: 1;
    transform: translate(0);
}

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }

/* Mobile Menu Toggle & CTA */
.menu-toggle {
    display: none;
    background: transparent;
    border: none;
    color: var(--text-main);
    cursor: pointer;
    z-index: 1001;
    padding: 0.5rem;
}

.mobile-nav-btn {
    display: none;
}

/* Responsive */
@media (max-width: 1024px) {
    .bento-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .img-large {
        grid-column: span 2;
    }
    .img-wide {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    .nav-desktop-btn {
        display: none;
    }

    .mobile-nav-btn {
        display: inline-block;
        width: max-content !important;
        margin: 0 auto;
        padding: 0.8rem 2rem;
    }

    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(26, 13, 9, 0.98);
        flex-direction: column;
        padding: 2rem 0;
        gap: 1.5rem;
        box-shadow: 0 20px 40px rgba(0,0,0,0.5);
        border-radius: 0 0 20px 20px;
        clip-path: polygon(0 0, 100% 0, 100% 0, 0 0); /* Hidden state */
        transition: clip-path 0.4s ease-in-out;
        border: none;
        border-top: 1px solid var(--glass-border);
    }
    
    .nav-links.active {
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%); /* Revealed state */
    }

    .nav-links a {
        font-size: 1.2rem;
        width: 100%;
        text-align: center;
    }
    
    .logo {
        font-size: 1.5rem;
    }
    
    .ca-box {
        flex-direction: column;
        text-align: center;
        gap: 0.8rem;
    }
    
    .mindset-dual {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .mindset-text p, .section-heading {
        text-align: center;
    }
    
    .bento-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 300px;
    }
    .img-large, .img-wide {
        grid-column: span 1;
    }
}
