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

html{
scroll-behavior:smooth;
}

body{

background:#090909;
color:white;
font-family:Inter,sans-serif;
overflow-x:hidden;

}

/*=======================*/

:root{

--green:#FFAF00;
--black:#090909;

}

/*=======================*/

.noise{

position:fixed;

width:100%;
height:100%;

background:url("../images/noise.png");

opacity:.05;

pointer-events:none;

z-index:999;

}

/*=======================*/

.navbar{

position:fixed;

top:0;
left:0;

width:100%;

padding:25px 8%;

display:flex;

justify-content:space-between;

align-items:center;

z-index:100;

background:#000;

backdrop-filter:blur(10px);

border-bottom:1px solid rgba(255,255,255,.05);

}

/*=======================*/

.logo{

display:flex;

align-items:center;

gap:12px;

font-family:Anton;

font-size:32px;

color:white;

}

.logo img{

width:55px;

}

/*=======================*/

.navbar ul{

display:flex;

list-style:none;

gap:45px;

}

.navbar ul li a{

text-decoration:none;

color:white;

font-size:15px;

transition:.3s;

}

.navbar ul li a:hover{

color:var(--green);

}

/*=======================*/



/*=======================*/

.mobileRight,.menuToggle,.mobileNavImg{

display:none;

}

/*=======================*/

.hero{

min-height:100vh;

padding:160px 8% 100px;

display:flex;

align-items:center;

justify-content:space-between;

gap:60px;

position:relative;

background-size:cover;

background-position:center;

background-repeat:no-repeat;

}

.hero-desktop{

background-image:url('../images/desktop-bg.png');

background-size:contain;

min-height:100vh;

height:auto;

}

.hero-mobile{

background-image:url('../images/mobile-bg.webp');

background-size:cover;

background-position:center;

background-repeat:no-repeat;

display:none;

}

.hero::before{

content:'';

position:absolute;

inset:0;

background:rgba(0,0,0,0.3);

z-index:0;

}

.hero>*{

position:relative;

z-index:1;

}

/*=======================*/

.heroLeft{

width:50%;

}

.miniTitle{

display:inline-block;

background:#FFAF00;

color:#000;

padding:10px 18px;

font-size:14px;

letter-spacing:5px;

font-weight:bold;

margin-bottom:20px;

text-transform:uppercase;

width:max-content;

}

.heroLeft h1{

font-family:Anton;

font-size:110px;

line-height:100px;

text-transform:uppercase;

margin-bottom:25px;

}

.heroLeft .miniTitle{

color:#000;

}

.heroLeft p{

font-size:20px;

line-height:34px;

max-width:700px;

color:#d6d6d6;

}

/* Buy Images */

.buyImages{

display:flex;

gap:12px;

margin-top:25px;

align-items:center;

width:70%;

}

.buyImages a{

display:block;

flex:1 1 0;

}

.buyImages img{

width:100%;

border-radius:10px;

display:block;

transition:.3s;

}

.buyImages img:hover{

transform:translateY(-3px);

box-shadow:0 6px 20px rgba(255,175,0,.25);

}

/* Contract Box */

.contractBox{

margin-top:25px;

display:flex;

justify-content:flex-start;

}

.contractInner{

display:inline-flex;

align-items:center;

background:#111;

border:2px solid #333;

border-radius:50px;

padding:12px 20px;

gap:14px;

transition:.3s;

}

.contractInner:hover{

border-color:var(--green);

}

.contractIcon{

color:var(--green);

display:flex;

align-items:center;

}

.contractAddr{

font-size:15px;

font-weight:600;

color:#fff;

letter-spacing:1px;

font-family:monospace;

}

.contractDivider{

width:1px;

height:22px;

background:#444;

}

.contractCopy{

font-size:14px;

font-weight:bold;

color:var(--green);

cursor:pointer;

letter-spacing:1px;

transition:.3s;

padding:4px 8px;

border-radius:4px;

}

.contractCopy:hover{

background:var(--green);

color:#111;

}

/*=======================*/

.buttons{

margin-top:25px;

display:flex;

gap:20px;

}

.greenBtn{

padding:18px 45px;

background:var(--green);

color:black;

text-decoration:none;

font-weight:bold;

font-size:17px;

}

.blackBtn{

padding:18px 45px;

border:2px solid var(--green);

text-decoration:none;

color:white;

font-weight:bold;

}

/*=======================*/

.greenBtn:hover{

box-shadow:0 0 40px var(--green);

}

.blackBtn:hover{

background:var(--green);

color:black;

}

/*=======================*/

@keyframes float{

0%{

transform:translateY(0);

}

50%{

transform:translateY(-20px);

}

100%{

transform:translateY(0);

}

}

/*====================================

THE NARRATIVE

===================================*/

.narrative{

display:grid;

grid-template-columns:

42%

38%

20%;

min-height:100vh;

background:#090909;

overflow:hidden;

}

/* LEFT */

.leftPanel{

background:#F9B505;

padding:70px;

clip-path:polygon(

0 0,

100% 0,

90% 100%,

0 100%

);

z-index:2;

display:flex;

flex-direction:column;

justify-content:center;

}

.sectionNumber{

background:#111;

color:#fff;

display:inline-block;

padding:10px 18px;

font-weight:bold;

margin-bottom:40px;

font-size:14px;

letter-spacing:2px;

width:max-content;

}

.leftPanel h2{

font-family:Anton;

font-size:75px;

line-height:.95;

margin-bottom:35px;

color:#111;

text-transform:uppercase;

}

.leftPanel p{

font-size:21px;

line-height:38px;

color:#111;

font-weight:500;

}

.statement{

margin-top:40px;

background:#111;

color:#F9B505;

padding:18px;

font-family:Anton;

font-size:28px;

text-align:center;

white-space:nowrap;

}

/*======================*/

.middlePanel{

position:relative;

display:flex;

justify-content:center;

align-items:center;

background:#111;

overflow:hidden;

}

.middlePanel img{

width:110%;

height:100%;

object-fit:cover;

transform:rotate(-3deg) scale(1.1);

filter:contrast(1.05);

}

/*======================*/

.rightPanel{

background:#111;

padding:60px 40px;

display:flex;

flex-direction:column;

justify-content:center;

border-left:3px solid #F9B505;

}

.rightPanel h3{

font-family:Anton;

font-size:42px;

line-height:1;

color:#F9B505;

margin-bottom:35px;

text-transform:uppercase;

}

.rightPanel ul{

list-style:none;

margin-bottom:40px;

}

.rightPanel li{

font-size:28px;

font-weight:bold;

color:#F9B505;

margin-bottom:18px;

}

.rightPanel p{

font-size:22px;

line-height:36px;

color:white;

}

/*============================

SCROLL REVEAL

=============================*/

.hero,
.narrative,
.buy,
.movement{

opacity:0;

transform:translateY(100px);

transition:1s;

}

.show{

opacity:1;

transform:translateY(0);

}

.section3-image{

width:100%;

margin:0;

padding:0;

line-height:0;

}

.section3-image img{

width:100%;

display:block;

object-fit:cover;

}

/*========================

BUY SECTION

=======================*/

.buy{

padding:150px 8%;

background:#080808;

}

/* Heading */

.sectionHeading{

text-align:center;

margin-bottom:70px;

}

.buy h2{

font-family:Anton;

font-size:85px;

margin:20px 0;

text-transform:uppercase;

}

.buy h2 span{

color:#FFAF00;

}

.buySubtitle{

color:#bcbcbc;

font-size:20px;

}

/*============================*/

.buyWrapper{

display:grid;

grid-template-columns:420px 1fr;

gap:70px;

align-items:start;

}

/* Phone */

.buyArtwork{

display:flex;

justify-content:center;

}

.buyArtwork img{

width:100%;

max-width:420px;

filter:drop-shadow(0 0 40px #FFAF0055);

animation:float 5s ease infinite;

}

/*============================*/

.buyCards{

display:grid;

grid-template-columns:1fr 1fr;

gap:35px;

}

/* Card */

.buyCard{

background:#101010;

border:2px solid #222;

padding:35px;

transition:.35s;

position:relative;

overflow:hidden;

}

.buyCard::before{

content:"";

position:absolute;

top:0;

left:0;

width:100%;

height:5px;

background:#FFAF00;

}

.buyCard:hover{

transform:translateY(-10px);

border-color:#FFAF00;

box-shadow:15px 15px 0 #FFAF00;

}

.cardTop{

display:flex;

align-items:center;

gap:15px;

margin-bottom:30px;

}

.cardTop img{

width:48px;

border-radius:8px;

}

.cardTop h3{

font-size:34px;

font-family:Anton;

}

.buyCard ul{

padding-left:20px;

margin-bottom:35px;

}

.buyCard li{

margin-bottom:16px;

line-height:28px;

color:#d5d5d5;

}

/*=====================================

MOVEMENT

======================================*/

.movement{

display:grid;

grid-template-columns:38% 62%;

background:#111;

min-height:720px;

overflow:hidden;

}

/*===========================

LEFT

===========================*/

.movement-left{

background:#F9B505;

padding:45px;

clip-path:polygon(

0 0,

100% 0,

88% 100%,

0 100%

);

display:flex;

flex-direction:column;

justify-content:center;

position:relative;

z-index:3;

}

.section-label{

display:inline-block;

background:#111;

color:#fff;

padding:8px 18px;

font-size:14px;

font-weight:bold;

letter-spacing:1px;

margin-bottom:30px;

width:max-content;

}

.movement-left h2{

font-family:Anton;

font-size:72px;

line-height:72px;

margin-bottom:30px;

text-transform:uppercase;

color:#111;

}

.movement-left p{

font-size:22px;

line-height:37px;

color:#111;

margin-bottom:35px;

}

.movement-highlight{

font-family:Anton;

font-size:52px;

line-height:52px;

text-transform:uppercase;

margin-bottom:25px;

color:#111;

}

.movement-footer{

font-family:Anton;

font-size:34px;

text-transform:uppercase;

color:#111;

}

/*===========================

RIGHT

===========================*/

.movement-right{

display:flex;

flex-direction:column;

background:#1a1a1a;

}

/* image */

.image-wrapper{

flex:1;

display:flex;

justify-content:center;

align-items:center;

padding:25px 25px 0;

overflow:hidden;

}

.image-wrapper img{

width:100%;

height:100%;

object-fit:cover;

}

/*===========================

Buttons

===========================*/

.movement-buttons{

display:grid;

grid-template-columns:repeat(2,1fr);

gap:18px;

padding:20px 25px 25px;

background:#F9B505;

justify-items:center;

}

.movement-btn{

background:#111;

color:white;

text-decoration:none;

font-family:Anton;

font-size:24px;

padding:22px;

text-align:center;

transition:.3s;

border:3px solid #222;

}

.movement-btn:hover{

background:#F9B505;

color:#111;

transform:translateY(-5px);

box-shadow:8px 8px 0 #111;

}

/*========================

FOOTER

=======================*/

.footer{

position:relative;

background:#050505;

padding:120px 8% 40px;

overflow:hidden;

border-top:2px solid #222;

}

/* glow */

.footerGlow{

position:absolute;

width:600px;

height:600px;

background:#FFAF0011;

filter:blur(170px);

right:-200px;

bottom:-200px;

}

/* grid */

.footerGrid{

position:relative;

display:grid;

grid-template-columns:

2fr

1fr

1fr

2fr;

gap:60px;

z-index:2;

}

/* logo */

.footerBrand img{

width:80px;

margin-bottom:20px;

}

.footerBrand h2{

font-family:Anton;

font-size:60px;

}

.footerBrand p{

margin-top:15px;

font-size:22px;

color:#FFAF00;

}

/* links */

.footerLinks h3{

font-size:26px;

margin-bottom:25px;

font-family:Anton;

}

.footerLinks{

display:flex;

flex-direction:column;

}

.footerLinks a{

color:#bdbdbd;

text-decoration:none;

margin-bottom:18px;

transition:.3s;

}

.footerLinks a:hover{

color:#FFAF00;

transform:translateX(8px);

}

/* card */

.footerCard{

background:#111;

padding:35px;

border:2px solid #FFAF00;

box-shadow:12px 12px 0 #FFAF00;

}

.footerCard h3{

font-size:30px;

font-family:Anton;

}

.ticker{

margin:20px 0;

font-size:55px;

font-family:Anton;

color:#FFAF00;

}

.footerCard h4{

margin-bottom:15px;

}

.footerCard p{

line-height:30px;

color:#cfcfcf;

}

/* bottom */

.footerBottom{

margin-top:70px;

padding-top:30px;

border-top:1px solid #222;

text-align:center;

color:#888;

}
