*{
    font-family:"Helvetica Neue", Helvetica, Arial, sans-serif;
}
:root{
    --black:#050607;
    --black2:#0b0d0e;
    --panel:#111315;
    --panel2:#17191b;
    --gold:#f5b400;
    --orange:#ff7b00;
    --white:#ffffff;
    --platinum:#d7d8d4;
    --gray:#8d9294;
    --line:rgba(255,255,255,.12);
}

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:"Helvetica Neue", Helvetica, Arial, sans-serif;
    background:#05070b;
    color:#fff;
}

a{
    text-decoration:none;
    color:inherit;
}

/* HEADER */

.site-header{
    position:absolute;
    top:0;
    left:0;
    right:0;
    height:104px;
    display:grid;
    grid-template-columns:260px 1fr 210px;
    align-items:center;
    padding:0 70px;
    z-index:30;
    background:linear-gradient(
        180deg,
        rgba(0,0,0,.82),
        rgba(0,0,0,.18)
    );
    border-bottom:1px solid rgba(255,255,255,.06);
}

.logo{
    display:flex;
    align-items:center;
    gap:16px;
}

.logo-mark{
    width:38px;
    height:48px;
    border:2px solid var(--gold);
    color:var(--gold);
    display:grid;
    place-items:center;
    font-weight:900;
    box-shadow:0 0 18px rgba(245,180,0,.18);
}

.logo-text{
    font-size:34px;
    line-height:.82;
    letter-spacing:8px;
    font-weight:900;
}

.logo-text small{
    display:block;
    font-size:10px;
    letter-spacing:6px;
    margin-top:10px;
}

.main-nav{
    display:flex;
    justify-content:center;
    gap:44px;
}

.main-nav a{
    font-size:13px;
    text-transform:uppercase;
    font-weight:900;
    color:#fff;
    letter-spacing:.04em;
    transition:.25s;
}

.main-nav a:hover{
    color:var(--gold);
}

.header-quote{
    justify-self:end;
    min-width:180px;
    padding-left:18px;
    border-left:1px solid rgba(255,255,255,.16);
}

.header-quote small{
    font-size:11px;
    display:block;
    font-weight:900;
    margin-bottom:6px;
}

.tv-mini-symbol{
    height:46px;
    overflow:hidden;
    color:#35d46b;
    font-size:12px;
}

.nav-toggle{
    display:none;
    border:1px solid var(--gold);
    background:rgba(0,0,0,.4);
    color:var(--gold);
    padding:10px 14px;
    font-weight:900;
}

/* HERO */

.hero{
    height:820px;
    position:relative;
    background:#050607;
    overflow:hidden;
}

.hero-image{
    position:absolute;
    inset:0;
    background:
        linear-gradient(
            90deg,
            rgba(5,6,7,.96) 0%,
            rgba(5,6,7,.92) 28%,
            rgba(5,6,7,.58) 52%,
            rgba(5,6,7,.16) 78%,
            rgba(5,6,7,.05) 100%
        ),
        url('/images/eon/hero-mine.png');

    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;
}

.hero-image:before{
    content:"";
    position:absolute;
    inset:0;
    background:
        radial-gradient(
            circle at 76% 44%,
            rgba(255,180,0,.18),
            transparent 24%
        ),
        radial-gradient(
            circle at 86% 58%,
            rgba(255,120,0,.12),
            transparent 18%
        ),
        linear-gradient(
            180deg,
            rgba(0,0,0,.18),
            rgba(0,0,0,.48)
        );
    mix-blend-mode:screen;
}

.image-placeholder{
    border:1px dashed rgba(255,255,255,.20);
    display:flex;
    align-items:center;
    justify-content:center;
    color:rgba(255,255,255,.32);
    text-transform:uppercase;
    letter-spacing:2px;
    font-size:12px;
    text-align:center;
}

.hero-overlay{
    position:absolute;
    inset:0;
    background:
        linear-gradient(90deg,rgba(0,0,0,.92),rgba(0,0,0,.62) 38%,rgba(0,0,0,.16) 78%),
        radial-gradient(circle at 70% 60%,transparent 0,rgba(0,0,0,.58) 76%);
}

.hero-content{
    position:relative;
    z-index:3;
    padding-left:70px;
    padding-top:220px;
    max-width:780px;
}

.hero-kicker,
.section-label{
    display:flex;
    align-items:center;
    gap:12px;
    text-transform:uppercase;
    font-size:12px;
    font-weight:900;
    color:#e1e1dd;
    letter-spacing:.04em;
}

.hero-kicker span,
.section-label span{
    width:48px;
    height:4px;
    background:var(--gold);
    display:inline-block;
}

.hero h1{
    font-size:68px;
    line-height:1.04;
    text-transform:uppercase;
    margin:30px 0;
    letter-spacing:1.5px;
    font-weight:900;
    text-shadow:0 10px 35px rgba(0,0,0,.55);
}

.hero h1 b{
    color:var(--gold);
}

.hero-content p{
    max-width:520px;
    color:#e0e0dc;
    font-size:17px;
    line-height:1.85;
}

.hero-actions{
    display:flex;
    gap:20px;
    margin-top:38px;
}

.btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:24px;
    min-height:58px;
    min-width:188px;
    padding:0 30px;
    border:1px solid var(--gold);
    text-transform:uppercase;
    font-size:12px;
    font-weight:900;
    letter-spacing:.04em;
    transition:.25s ease;
}

.btn:hover{
    transform:translateY(-2px);
    box-shadow:0 12px 32px rgba(245,180,0,.18);
}

.btn-gold{
    background:linear-gradient(135deg,#ffca2f,var(--gold));
    color:#080808;
}

.btn-dark{
    background:rgba(0,0,0,.35);
    color:#fff;
    backdrop-filter:blur(10px);
}

.hero-slider{
    position:absolute;
    left:70px;
    bottom:115px;
    z-index:3;
    display:flex;
    align-items:center;
    gap:24px;
    color:#a4a7a7;
    font-size:13px;
}

.hero-slider div{
    width:82px;
    height:1px;
    background:#7b7d7d;
    position:relative;
}

.hero-slider div:after{
    content:"";
    position:absolute;
    left:0;
    bottom:-8px;
    width:34px;
    height:3px;
    background:var(--gold);
}

.hero-slider button{
    background:none;
    border:0;
    color:#aaa;
    font-size:24px;
    cursor:pointer;
}

.hero-location{
    position:absolute;
    right:85px;
    bottom:88px;
    z-index:3;

    display:flex;
    align-items:flex-start;
    gap:16px;

    text-transform:uppercase;
    text-align:left;
}

.hero-location{
    position:absolute;
    right:78px;
    bottom:80px;
    z-index:3;
    text-transform:uppercase;

    display:flex;
    align-items:center;
    gap:14px;
}

.hero-location:before{
    content:"●";
    color:var(--gold);
    font-size:28px;
    line-height:1;
}

.hero-location-text{
    display:flex;
    flex-direction:column;
    justify-content:center;
}

.hero-location b{
    display:block;
    font-size:13px;
    line-height:1.1;
    letter-spacing:.03em;
}

.hero-location small{
    display:block;
    color:#e0e0dc;
    font-size:11px;
    margin-top:4px;
    letter-spacing:.04em;
}

/* LIVE MARKET */

.live-market{
    position:relative;
    min-height:178px;
    background:#0d0f10;
    border-top:1px solid var(--line);
    border-bottom:1px solid var(--line);
    display:grid;
    grid-template-columns:115px repeat(6,1fr);
    gap:18px;
    align-items:center;
    padding:42px 70px;
}

.market-title{
    text-transform:uppercase;
    font-size:24px;
    font-weight:900;
    line-height:1.08;
}

.market-card{
    height:104px;
    background:linear-gradient(180deg,#17191b,#101214);
    border:1px solid rgba(255,255,255,.14);
    padding:18px 20px;
    transition:.25s ease;
}

.market-card:hover{
    border-color:rgba(245,180,0,.42);
    transform:translateY(-3px);
}

.market-card small{
    display:block;
    text-transform:uppercase;
    font-size:11px;
    font-weight:900;
}

.market-card small:before{
    content:"●";
    margin-right:6px;
}

.gold-dot,
.gold-dot:before{
    color:var(--gold);
}

.orange-dot,
.orange-dot:before{
    color:var(--orange);
}

.tv-price{
    font-size:23px;
    font-weight:900;
    margin:8px 0 1px;
}

.market-card span{
    color:#b8bab7;
    font-size:10px;
}

.spark{
    height:20px;
    margin-top:6px;
    border-bottom:1px solid rgba(255,255,255,.15);
}

.gold-spark{
    background:linear-gradient(140deg,transparent 5%,rgba(245,180,0,.5) 15%,transparent 22%,rgba(245,180,0,.65) 34%,transparent 45%,rgba(245,180,0,.8) 60%,transparent 72%);
}

.silver-spark{
    background:linear-gradient(140deg,transparent 10%,rgba(215,216,212,.38) 22%,transparent 30%,rgba(215,216,212,.65) 49%,transparent 62%,rgba(215,216,212,.45) 80%);
}

.orange-spark{
    background:linear-gradient(140deg,transparent 4%,rgba(255,123,0,.45) 14%,transparent 28%,rgba(255,123,0,.7) 42%,transparent 55%,rgba(255,123,0,.85) 74%);
}

.market-note{
    position:absolute;
    top:18px;
    right:70px;
    color:#7c7f80;
    font-size:10px;
}

/* TRADINGVIEW */

.ticker-widget-section{
    background:#090a0b;
    border-bottom:1px solid var(--line);
    padding:8px 70px 18px;
}

.ticker-widget-title{
    font-size:11px;
    text-transform:uppercase;
    color:var(--gold);
    font-weight:900;
    margin-bottom:6px;
}

/* HIGHLIGHTS */

.highlights{
    position:relative;
    background:#090b0c;
    padding:86px 70px 58px;
    overflow:hidden;
}

.background-mine{
    position:absolute;
    right:0;
    top:0;
    bottom:0;
    width:45%;
    background:
        linear-gradient(90deg,rgba(9,11,12,1),rgba(9,11,12,.5)),
        linear-gradient(135deg,#1c1f20,#383838,#080909);
    border-left:1px dashed rgba(255,255,255,.08);
}

.highlights .section-label{
    color:var(--gold);
    position:relative;
    z-index:2;
}

.highlight-intro{
    position:relative;
    z-index:2;
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:80px;
    margin:26px 0 58px;
}

.highlight-intro h2{
    font-size:42px;
    line-height:1.15;
    text-transform:uppercase;
}

.highlight-intro p{
    color:#d0d1cf;
    line-height:1.8;
    max-width:520px;
}

.metrics-grid{
    position:relative;
    z-index:2;
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:50px 72px;
}

.metric i{
    color:var(--gold);
    font-style:normal;
    font-size:32px;
    display:block;
    margin-bottom:16px;
}

.metric strong{
    display:block;
    color:var(--gold);
    text-transform:uppercase;
    font-size:30px;
    line-height:1;
}

.metric h3{
    text-transform:uppercase;
    font-size:18px;
    margin:7px 0 9px;
}

.metric p{
    color:#bfc1be;
    font-size:13px;
    line-height:1.55;
}

.mini-disclaimer{
    margin-top:45px;
    color:#8b8d8b;
    font-size:10px;
}

/* PROJECTS */

.projects-preview{
    background:#f2f2ef;
    color:#090909;
    padding:58px 70px 70px;
}

.projects-head{
    display:flex;
    justify-content:space-between;
    align-items:flex-start;
    gap:40px;
    margin-bottom:34px;
}

.dark-label{
    color:#252525!important;
    margin-bottom:20px;
}

.projects-preview h2{
    font-size:42px;
    line-height:1.14;
    text-transform:uppercase;
}

.view-projects{
    border:1px solid #111;
    padding:18px 28px;
    min-width:220px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    text-transform:uppercase;
    font-size:12px;
    font-weight:900;
    margin-top:34px;
}

.project-card-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:28px;
}

.project-card{
    background:#0d0e0f;
    color:#fff;
}

.project-img{
    height:250px;
    background:
        linear-gradient(135deg,rgba(245,180,0,.25),rgba(255,255,255,.08)),
        #2d3030;
}

.project-body{
    padding:24px 26px;
}

.project-body h3{
    color:var(--gold);
    text-transform:uppercase;
    font-size:21px;
}

.project-body small{
    display:block;
    color:#c7c7c3;
    margin:6px 0 18px;
}

.project-body p{
    color:#d7d7d4;
    line-height:1.65;
    min-height:70px;
}

.project-body a{
    display:inline-block;
    color:var(--gold);
    text-transform:uppercase;
    font-size:12px;
    font-weight:900;
    margin-top:18px;
}

/* INVESTORS */

.investor-section{
    background:#0b0c0d;
    display:grid;
    grid-template-columns:1.25fr 1fr 1fr;
    gap:48px;
    padding:70px;
    border-bottom:1px solid var(--line);
}

.investor-copy span,
.investor-resources span,
.stock-panel span{
    color:var(--gold);
    text-transform:uppercase;
    font-size:12px;
    font-weight:900;
}

.investor-copy h2{
    text-transform:uppercase;
    font-size:42px;
    line-height:1.15;
    margin:18px 0;
}

.investor-copy p{
    color:#cfd0cd;
    line-height:1.75;
    max-width:420px;
    margin-bottom:30px;
}

.investor-resources a{
    display:flex;
    justify-content:space-between;
    padding:14px 0;
    border-bottom:1px solid var(--line);
    color:#f0f0f0;
}

.investor-resources small{
    color:var(--gold);
}

.stock-panel{
    border-left:1px solid var(--line);
    padding-left:36px;
}

.stock-panel h3{
    margin:18px 0 14px;
    text-transform:uppercase;
}

.large-chart{
    height:52px;
    margin:18px 0;
    background:linear-gradient(140deg,transparent 5%,rgba(245,180,0,.35) 14%,transparent 21%,rgba(245,180,0,.65) 40%,transparent 55%,rgba(245,180,0,.85) 75%);
    border-bottom:1px solid rgba(245,180,0,.5);
}

.stock-panel a{
    border:1px solid var(--gold);
    padding:16px 22px;
    display:inline-flex;
    gap:18px;
    text-transform:uppercase;
    color:var(--gold);
    font-size:12px;
    font-weight:900;
}

/* FOOTER */

.footer{
    background:#090909;
    padding:46px 70px 18px;
}

.footer-grid{
    display:grid;
    grid-template-columns:1.45fr repeat(5,1fr);
    gap:42px;
    padding-bottom:36px;
    border-bottom:1px solid var(--line);
}

.footer h4{
    text-transform:uppercase;
    font-size:12px;
    margin-bottom:18px;
}

.footer a{
    display:block;
    color:#bfc0bd;
    font-size:12px;
    margin-bottom:10px;
}

.socials{
    display:flex;
    gap:12px;
}

.socials span{
    width:28px;
    height:28px;
    border:1px solid var(--line);
    display:grid;
    place-items:center;
    color:#fff;
}

.footer-bottom{
    display:flex;
    justify-content:space-between;
    color:#777;
    font-size:12px;
    padding-top:18px;
}

.footer-bottom a{
    display:inline-block;
    margin-left:18px;
}

/* INNER PAGES */

.page-hero{
    position:relative;
    height:430px;
    display:flex;
    align-items:end;
    padding:150px 70px 60px;
    overflow:hidden;
}

.page-hero-bg{
    position:absolute;
    inset:0;
    background:linear-gradient(135deg,#111,#333,#090909);
}

.page-hero-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(90deg,rgba(0,0,0,.82),rgba(0,0,0,.35));
}

.page-hero-content{
    position:relative;
    z-index:2;
}

.page-hero h1{
    font-size:58px;
    text-transform:uppercase;
    margin:20px 0 12px;
}

.page-hero p{
    max-width:800px;
    color:#d3d3d0;
    line-height:1.7;
}

.content-section{
    padding:80px 70px;
    background:#0b0c0d;
}

.two-col,
.project-detail,
.contact-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
}

.content-section h2{
    font-size:42px;
    text-transform:uppercase;
    line-height:1.15;
}

.content-section p{
    color:#d0d0cd;
    line-height:1.75;
    margin-bottom:14px;
}

.info-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:20px;
    margin-top:45px;
}

.info-grid div{
    background:#141617;
    border-left:4px solid var(--gold);
    padding:28px;
}

.info-grid strong{
    display:block;
    color:var(--gold);
    font-size:34px;
}

.info-grid span{
    text-transform:uppercase;
    font-size:13px;
}

.team-grid,
.news-grid,
.media-grid,
.investor-doc-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:26px;
}

.team-card,
.news-card,
.investor-doc-grid div{
    background:#131516;
    border:1px solid var(--line);
    padding:28px;
}

.portrait,
.news-image,
.media-box,
.large-image,
.document-slot{
    height:260px;
    background:#232526;
    margin-bottom:22px;
}

.team-card h3,
.news-card h3,
.investor-doc-grid h3{
    color:var(--gold);
    text-transform:uppercase;
    margin-bottom:12px;
}

.team-card span,
.news-card span{
    display:block;
    color:#aaa;
    text-transform:uppercase;
    font-size:12px;
    margin-bottom:12px;
}

.roadmap-block{
    margin-bottom:55px;
}

.roadmap-grid{
    display:grid;
    grid-template-columns:repeat(6,1fr);
    gap:14px;
    margin-top:26px;
}

.roadmap-grid div{
    background:#141617;
    border-top:4px solid var(--gold);
    padding:24px;
}

.roadmap-grid strong{
    display:block;
    color:var(--gold);
    font-size:34px;
}

.inner-projects{
    margin-top:30px;
}

.gold-list{
    list-style:none;
    margin-top:25px;
}

.gold-list li{
    padding:13px 0;
    border-bottom:1px solid var(--line);
    color:#ddd;
}

.tradingview-large{
    height:520px;
    margin-bottom:40px;
}

.tradingview-large .tradingview-widget-container{
    height:460px;
    background:#111;
    border:1px solid var(--line);
    margin-top:20px;
}

.contact-form{
    display:grid;
    gap:14px;
}

.contact-form input,
.contact-form textarea{
    background:#111;
    border:1px solid var(--line);
    color:#fff;
    padding:16px;
}

.contact-form textarea{
    height:160px;
}

.muted{
    color:#bfc1be!important;
}

.legal-content{
    max-width:1100px;
}

.document-slot{
    display:grid;
    place-items:center;
}

/* ANIMATION */

.reveal{
    opacity:0;
    transform:translateY(24px);
    transition:all .7s ease;
}

.reveal.visible{
    opacity:1;
    transform:translateY(0);
}

/* RESPONSIVE */

@media(max-width:1200px){
    .site-header{
        grid-template-columns:1fr auto;
        height:auto;
        padding:24px;
    }

    .main-nav{
        display:none;
    }

    .main-nav.open{
        display:flex;
        position:absolute;
        left:0;
        right:0;
        top:86px;
        background:#080909;
        flex-direction:column;
        padding:25px 56px;
    }

    .header-quote{
        display:none;
    }

    .nav-toggle{
        display:block;
    }

    .hero-content{
        padding-left:32px;
    }

    .hero h1{
        font-size:50px;
    }

    .live-market,
    .metrics-grid,
    .project-card-grid,
    .investor-section,
    .footer-grid,
    .team-grid,
    .news-grid,
    .media-grid,
    .investor-doc-grid{
        grid-template-columns:1fr 1fr;
    }

    .highlight-intro,
    .two-col,
    .project-detail,
    .contact-grid{
        grid-template-columns:1fr;
    }

    .roadmap-grid{
        grid-template-columns:repeat(3,1fr);
    }
}

@media(max-width:760px){
    .hero{
        height:auto;
        min-height:760px;
    }

    .hero-content{
        padding:190px 22px 120px;
    }

    .hero h1{
        font-size:36px;
    }

    .hero-location,
    .hero-slider{
        display:none;
    }

    .live-market,
    .metrics-grid,
    .project-card-grid,
    .investor-section,
    .footer-grid,
    .team-grid,
    .news-grid,
    .media-grid,
    .investor-doc-grid,
    .info-grid,
    .roadmap-grid{
        grid-template-columns:1fr;
    }

    .live-market,
    .highlights,
    .projects-preview,
    .investor-section,
    .footer,
    .content-section,
    .page-hero{
        padding-left:22px;
        padding-right:22px;
    }

    .projects-head,
    .footer-bottom{
        display:block;
    }

    .page-hero h1{
        font-size:38px;
    }

    .logo-text{
        font-size:24px;
    }
}
.header-quote{
    display:flex;
    flex-direction:column;
    align-items:flex-end;
    gap:6px;
}

.header-quote{
    width:185px;
    height:72px;

    padding-left:18px;
    border-left:1px solid rgba(255,255,255,.10);

    display:flex;
    flex-direction:column;
    justify-content:center;
    gap:4px;
}
.tradingview-quote{
    width:270px;
    height:110px;

    padding-left:20px;
    padding-top:6px;

    border-left:1px solid rgba(255,255,255,.12);

    overflow:hidden;

    display:flex;
    align-items:flex-start;
    justify-content:flex-start;
}

.tradingview-quote .tradingview-widget-container{
    width:260px !important;
    height:110px !important;
    overflow:hidden;
}
.market-card{
    position:relative;

    padding:18px;

    border:1px solid rgba(255,255,255,.12);

    background:
    linear-gradient(180deg,#11151c,#090b10);

    overflow:hidden;

    min-height:105px;
}

.market-symbol{
    position:absolute;

    top:12px;
    left:16px;

    z-index:5;

    font-size:11px;
    font-weight:800;

    letter-spacing:.08em;

    color:#f5b400;
}

.market-card{
    min-height:145px !important;
    height:145px !important;
}

.market-card .tradingview-widget-container{
    width:100%;
    height:125px !important;
    margin-top:12px;
    overflow:hidden;
}
.logo img{
    height:148px;
    width:auto;
    display:block;
}
/* =========================
MOBILE HEADER FIX
========================= */

@media (max-width: 768px){

    .site-header{
        height:105px;
        padding:0 18px;
        display:grid;
        grid-template-columns:90px 1fr 70px;
        align-items:center;
        gap:10px;
    }

    .logo img{
        height:88px !important;
        width:auto;
    }

    .tradingview-quote{
        display:block !important;
        width:120px !important;
        height:76px !important;
        padding-left:8px;
        border-left:1px solid rgba(255,255,255,.08);
        overflow:hidden;
        transform:scale(.72);
        transform-origin:center;
        justify-self:center;
    }

    .nav-toggle{
        width:64px;
        height:38px;
        font-size:11px;
        justify-self:end;
    }

    .hero{
        min-height:720px;
    }

    .hero-content{
        padding:260px 22px 70px !important;
        max-width:100%;
    }

    .hero h1{
        font-size:34px !important;
        line-height:1.05;
        margin:22px 0;
    }

    .hero-content p{
        font-size:14px;
        line-height:1.65;
        max-width:260px;
    }

    .hero-actions{
        flex-direction:column;
        gap:12px;
    }
}