.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 80px 16px 60px;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 70% 60% at 50% 45%, rgba(180, 30, 20, .13) 0%, transparent 65%), linear-gradient(180deg, #070707 0%, #0c0505 50%, #070707 100%);
}

.hero-grid {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(192, 57, 43, .05) 1px, transparent 1px), linear-gradient(90deg, rgba(192, 57, 43, .05) 1px, transparent 1px);
    background-size: 56px 56px;
    mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 0%, transparent 70%);
}

.hero-vline {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 100%;
    background: linear-gradient(180deg, transparent, var(--red) 50%, transparent);
    opacity: .1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 860px;
}

.hero-badge {
    display: inline-block;
    font-family: 'Share Tech Mono', monospace;
    font-size: 10px;
    letter-spacing: 4px;
    color: var(--red-bright);
    border: 1px solid var(--border);
    background: rgba(192, 57, 43, .07);
    padding: 6px 18px;
    margin-bottom: 32px;
    clip-path: polygon(6px 0%, 100% 0%, calc(100% - 6px) 100%, 0% 100%);
    animation: fadeUp .7s ease both;
}

.hero h1 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(70px, 14vw, 140px);
    line-height: .88;
    letter-spacing: 6px;
    color: #fff;
    animation: fadeUp .7s ease .12s both;
}

.hero h1 .r {
    color: var(--red-bright);
}

.hero h1 .small {
    display: block;
    font-size: clamp(22px, 4vw, 44px);
    letter-spacing: 16px;
    color: rgb(255, 255, 255);
    margin-top: 10px;
}

.hero-desc {
    font-size: clamp(15px, 2vw, 18px);
    font-weight: 500;
    color: #888;
    max-width: 500px;
    margin: 28px auto 40px;
    line-height: 1.65;
    animation: fadeUp .7s ease .24s both;
}

.hero-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeUp .7s ease .36s both;
}


/* STATS */

.stats-bar {
    display: flex;
    justify-content: center;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    background: rgba(14, 14, 14, .9);
    flex-wrap: wrap;
}

.stat {
    flex: 1;
    min-width: 120px;
    max-width: 220px;
    padding: clamp(18px, 3vw, 28px) 16px;
    text-align: center;
    border-right: 1px solid var(--border);
    transition: background .2s;
}

.stat:last-child {
    border-right: none;
}

.stat:hover {
    background: rgba(192, 57, 43, .04);
}

.stat-n {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(32px, 5vw, 44px);
    color: var(--red-bright);
    letter-spacing: 2px;
    line-height: 1;
    display: block;
}

.stat-l {
    font-size: 10px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--muted);
    margin-top: 4px;
    display: block;
    font-weight: 600;
}


/* FEATURES */

.feat-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
    margin-top: 56px;
}

.feat-card {
    background: var(--bg2);
    padding: clamp(24px, 3vw, 36px) clamp(20px, 3vw, 32px);
    position: relative;
    overflow: hidden;
    transition: background .25s;
}

.feat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 2px;
    height: 0;
    background: var(--red-bright);
    transition: height .35s ease;
}

.feat-card:hover {
    background: #110909;
}

.feat-card:hover::before {
    height: 100%;
}

.feat-icon {
    width: 44px;
    height: 44px;
    background: rgba(192, 57, 43, .09);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    clip-path: polygon(5px 0%, 100% 0%, calc(100% - 5px) 100%, 0% 100%);
}

.feat-icon svg {
    width: 20px;
    height: 20px;
    stroke: var(--red-bright);
    fill: none;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.feat-title {
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 8px;
}

.feat-desc {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.75;
}


/* CONNECT BLOCK */

.connect-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(24px, 4vw, 48px);
    background: var(--bg2);
    border: 1px solid var(--border);
    padding: clamp(24px, 4vw, 48px);
    margin-top: 56px;
    clip-path: polygon(14px 0%, 100% 0%, calc(100% - 14px) 100%, 0% 100%);
    align-items: center;
}

.ip-label {
    font-family: 'Share Tech Mono', monospace;
    font-size: 10px;
    letter-spacing: 3px;
    color: var(--red-bright);
    margin-bottom: 10px;
    display: block;
}

.ip-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    background: rgba(0, 0, 0, .45);
    border: 1px solid var(--border);
    padding: 12px 18px;
    cursor: url('pointer.png'), default;
    transition: border-color .2s;
}

.ip-box:hover {
    border-color: var(--red);
}

.ip-box span {
    font-family: 'Share Tech Mono', monospace;
    font-size: clamp(14px, 2.5vw, 22px);
    color: #fff;
}

.copy-btn {
    font-family: 'Share Tech Mono', monospace;
    font-size: 9px;
    letter-spacing: 2px;
    color: var(--muted);
    background: none;
    border: 1px solid var(--border2);
    padding: 5px 10px;
    cursor: url('link.png'), default;
    transition: all .2s;
    text-transform: uppercase;
    flex-shrink: 0;
}

.copy-btn:hover {
    color: var(--red-bright);
    border-color: var(--red);
}

.copy-toast {
    font-family: 'Share Tech Mono', monospace;
    font-size: 10px;
    color: #4caf50;
    letter-spacing: 2px;
    margin-top: 8px;
    display: none;
}

.status-rows {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.srow {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid var(--border2);
}

.srow:last-child {
    border-bottom: none;
}

.srow-k {
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--muted);
    font-weight: 600;
}

.srow-v {
    font-family: 'Share Tech Mono', monospace;
    font-size: 12px;
    color: #fff;
}

.dot {
    display: inline-block;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #4caf50;
    margin-right: 7px;
    animation: pulse-g 2s infinite;
}

@keyframes pulse-g {
    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(76, 175, 80, .4);
    }
    50% {
        box-shadow: 0 0 0 5px rgba(76, 175, 80, 0);
    }
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(28px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media(max-width:640px) {
    .connect-block {
        grid-template-columns: 1fr;
        clip-path: none;
    }
    .stat {
        min-width: 100px;
    }
}