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

:root {

--bg:      #18171c;
--card:    #1a1a1d;
--border:  #343436;

--text:    #f7f7f7;
--sub:     #c2c2c7;
--dim:     #7a7a80;

--accent:   #8b44c4;
--accent-2: #eb9225;

/* ranks */

--coal:    #888;
--copper:  #c87941;
--gold:    #c9960f;
--iron:    #a0b4bc;
--diamond: #3db8f5;
--nether:  #8b44c4;

}

html { scroll-behavior: smooth; }

body {
font-family: ‘Inter’, sans-serif;
background: var(--bg);
color: var(--text);
min-height: 100vh;
-webkit-font-smoothing: antialiased;
}

/* NAV */
nav {
    position: sticky; top: 0; z-index: 50;
    height: 56px;
    display: flex; align-items: center; justify-content: space-between;
    padding: 0 1.75rem;
    background: #232227;
    border-bottom: 1px solid var(--border);
}
.logo {
font-size: 0.9rem; font-weight: 600;
color: var(--text); text-decoration: none;
letter-spacing: -0.01em;
display: flex; align-items: center; gap: 0.5rem;
}
.logo-sq {
width: 40px; height: 40px; border-radius: 5px;
flex-shrink: 0;
}
.logo-hero {
    width: 320px;
    max-width: 90%;
    height: 90%;
    display: block;
    margin: 0 auto;
    padding: 1.5rem 0;
}
.nav-r { display: flex; align-items: center; gap: 0.25rem; }
.nav-r a {
font-size: 0.8rem; font-weight: 500; color: var(--sub);
text-decoration: none; padding: 0.35rem 0.7rem; border-radius: 6px;
transition: color .15s, background .15s;
}
.nav-r a:hover { color: var(–text); background: var(--card); }
.nav-r a.active { color: var(--text); }
.nav-pill {

font-family: 'Geist Mono', monospace;

font-size: 0.68rem !important;

border: 1px solid var(--border) !important;

color: var(--dim) !important;

background: #ffffff04;

padding: 0.3rem 0.7rem !important;

opacity: 0.75;

}

.nav-pill:hover {

opacity: 1;

border-color: var(--dim) !important;

background: var(--card) !important;

}

/* HERO */
.hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    text-align: center;

    padding-top: 1rem;
    padding-bottom: 3rem;
    padding-inline: 1.5rem;
}
.live-badge {
display: inline-flex; align-items: center; gap: 0.4rem;
font-family: 'Geist Mono', monospace;
font-size: 0.68rem; color: var(--sub);
letter-spacing: 0.05em; text-transform: uppercase;
border: 1px solid var(--border); border-radius: 99px;
padding: 0.25rem 0.7rem; background: var(--card);
margin-bottom: 2rem;
animation: up .5s ease both;
}
.live-dot { width: 5px; height: 5px; border-radius: 50%; background: #4ade80; animation: blink 2s ease infinite; }
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:.25} }

.hero h1 {
    font-size: clamp(2.6rem, 6.5vw, 5rem);
    font-weight: 600; letter-spacing: -0.04em; line-height: 1.05;
    color: var(--text); margin-bottom: 1.1rem;
    animation: up .5s .07s ease both;
}
.hero h1 span {
    background: linear-gradient(135deg, var(--accent) 10%, var(--accent-2) 90%);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.hero p {
    font-size: 0.95rem; color: var(--sub); max-width: 400px;
    line-height: 1.65; margin-bottom: 2rem;
    animation: up .5s .14s ease both;
}
.hero-btns {
    display: flex; gap: 0.6rem; flex-wrap: wrap; justify-content: center;
    animation: up .5s .21s ease both;
}
.btn {
    display: inline-flex; align-items: center;
    padding: 0.6rem 1.25rem; border-radius: 7px;
    font-size: 0.83rem; font-weight: 500;
    text-decoration: none; transition: opacity .15s, background .15s, border-color .15s;
}
.btn-solid {

background: linear-gradient(
135deg,
var(--accent),
var(--accent-2)
);

color: white;

font-weight: 600;

border: 1px solid #ffffff10;

box-shadow:
0 0 0 1px #00000060 inset,
0 6px 18px #00000050;

}

.btn-solid:hover {

opacity: .95;

transform: translateY(-1px);

}
.btn-ghost { border: 1px solid var(--border); color: var(--text); background: #27262b;}
.btn-ghost:hover { border-color: var(--dim); background:#27262b; }

.hero-ip {
margin-top: 1.6rem;
font-family: ‘Geist Mono’, monospace;
font-size: 0.73rem; color: var(--dim);
animation: up .5s .28s ease both;
}
.hero-ip code {
color: var(--sub); background: var(--card);
border: 1px solid var(--border); border-radius: 4px;
padding: 0.15rem 0.5rem; cursor: pointer; user-select: all;
transition: border-color .15s;
}
.hero-ip code:hover { border-color: var(--dim); }

/* RANK STRIP */
.strip {
display: flex; justify-content: center; overflow-x: auto;
border-top: 1px solid var(--border);
border-bottom: 1px solid var(--border);
background: var(--card);
}
.strip-item {
display: flex; align-items: center; gap: 0.4rem;
padding: 0.65rem 1.25rem;
border-right: 1px solid var(--border);
font-family: 'Geist Mono', monospace;
font-size: 0.7rem; color: var(--dim);
white-space: nowrap;
transition: background .15s, color .15s;
}
.strip-item:last-child { border-right: none; }
.strip-item:hover { background: #1e1e20; color: var(--sub); }
.dot { width: 6px; height: 6px; border-radius: 50%; flex-shrink: 0; }

/* SECTIONS */
.section { max-width: 880px; margin: 0 auto; padding: 4.5rem 1.5rem; }
.sec-label {
font-family: 'Geist Mono', monospace;
font-size: 0.65rem; color: var(--dim);
text-transform: uppercase; letter-spacing: 0.1em;
margin-bottom: 0.6rem;
}
.sec-title {
font-size: clamp(1.4rem, 2.5vw, 2rem);
font-weight: 600; letter-spacing: -0.03em;
line-height: 1.15; margin-bottom: 0.7rem;
}
.sec-desc { font-size: 0.875rem; color: var(--sub); line-height: 1.7; max-width: 440px; }

hr { border: none; border-top: 1px solid var(–border); }

/* KITS */
.kits {
display: grid; grid-template-columns: repeat(auto-fit, minmax(195px, 1fr));
gap: 1px; background: var(--border);
border: 1px solid var(--border); border-radius: 9px;
overflow: hidden; margin-top: 2.25rem;
}
.kit {
background: var(--card); padding: 1.4rem 1.25rem;
display: flex; flex-direction: column; gap: 0.55rem;
transition: background .15s;
}
.kit:hover { background: #1e1e20; }
.kit-ico {
font-size: 1.2rem;
width: 36px; height: 36px; border-radius: 7px;
background: var(--bg); border: 1px solid var(--border);
display: flex; align-items: center; justify-content: center;
}
.kit-name { font-size: 0.875rem; font-weight: 600; }
.kit-desc { font-size: 0.775rem; color: var(--sub); line-height: 1.55; flex: 1; }
.kit-id {
font-family: 'Geist Mono', monospace; font-size: 0.63rem;
color: var(--dim); margin-top: 0.15rem;
}

/* STEPS */
.steps {
display: grid; grid-template-columns: repeat(auto-fit, minmax(185px, 1fr));
gap: 2rem; margin-top: 2.5rem;
}
.step-n { font-family: ‘Geist Mono’, monospace; font-size: 0.65rem; color: var(--dim); margin-bottom: 0.5rem; }
.step-t { font-size: 0.875rem; font-weight: 600; margin-bottom: 0.4rem; }
.step-d { font-size: 0.78rem; color: var(--sub); line-height: 1.6; }

/* LB PREVIEW */
.lb-card {
margin-top: 2.25rem;
border: 1px solid var(--border); border-radius: 9px;
overflow: hidden; background: #27262b;
}
.lb-head {
display: flex; align-items: center; justify-content: space-between;
padding: 0.8rem 1.25rem;
border-bottom: 1px solid var(--border);
}
.lb-head-t { font-size: 0.825rem; font-weight: 600; }
.lb-head-a {
font-family: 'Geist Mono', monospace;
font-size: 0.68rem; color: var(--dim);
text-decoration: none; transition: color .15s;
}
.lb-head-a:hover { color: var(--sub); }
.lb-row {
display: flex; align-items: center; gap: 0.8rem;
padding: 0.65rem 1.25rem;
border-bottom: 1px solid var(--border);
transition: background .15s;
}
.lb-row:last-child { border-bottom: none; }
.lb-row:hover { background: #1c1c1e; }
.lb-n {
font-family: 'Geist Mono', monospace;
font-size: 0.7rem; color: var(--dim);
width: 20px; text-align: center; flex-shrink: 0;
}
.lb-n.hi { color: var(--gold); }
.lb-av {
width: 24px; height: 24px; border-radius: 5px;
background: var(--border); flex-shrink: 0; overflow: hidden;
display: flex; align-items: center; justify-content: center;
font-family: 'Geist Mono', monospace; font-size: 0.55rem; color: var(--dim);
}
.lb-av img { width: 100%; height: 100%; object-fit: cover; }
.lb-name { font-size: 0.825rem; font-weight: 500; flex: 1; }
.lb-badge {
display: inline-flex; align-items: center; gap: 0.28rem;
font-family: 'Geist Mono', monospace; font-size: 0.65rem; color: var(--dim);
border: 1px solid var(--border); border-radius: 4px;
padding: 0.12rem 0.42rem; background: var(--bg);
}
.lb-elo {
font-family: 'Geist Mono', monospace;
font-size: 0.775rem; font-weight: 500;
color: var(--sub); margin-left: auto;
}

/* CTA */
.cta {
max-width: 880px; margin: 0 auto 5rem;
padding: 0 1.5rem;
}
.cta-inner {
display: flex; align-items: center; justify-content: space-between;
gap: 2rem; flex-wrap: wrap;
border: 1px solid var(--border); border-radius: 9px;
background: #27262b; padding: 2.25rem 2rem;
}
.cta-t { font-size: 1.1rem; font-weight: 600; letter-spacing: -0.02em; margin-bottom: 0.35rem; }
.cta-s { font-size: 0.825rem; color: var(--sub); }

/* FOOTER */
footer {
border-top: 1px solid var(--border);
padding: 1.25rem 1.75rem;
display: flex; align-items: center; justify-content: space-between;
flex-wrap: wrap; gap: 0.75rem;
font-family: 'Geist Mono', monospace;
font-size: 0.67rem; color: var(--dim);
}
footer a { color: var(--dim); text-decoration: none; transition: color .15s; }
footer a:hover { color: var(--sub); }
footer nav { display: flex; gap: 1.25rem; border: none; height: auto; padding: 0; background: none; position: static; }

.lb-n.hi {

color: var(--gold);

text-shadow:
0 0 6px #c9960f80,
0 0 12px #c9960f40;

}


/* ANIM */
@keyframes up { from{opacity:0;transform:translateY(10px)}to{opacity:1;transform:translateY(0)} }
.r { opacity: 0; transform: translateY(12px); transition: opacity .5s ease, transform .5s ease; }
.r.on { opacity: 1; transform: none; }

@media (max-width: 560px) {
nav { padding: 0 1rem; }
.nav-r a:not(.nav-pill):not(.active) { display: none; }
.section { padding: 3rem 1rem; }
.cta { padding: 0 1rem; }
.cta-inner { padding: 1.5rem 1.25rem; flex-direction: column; align-items: flex-start; }
}