:root {
    --garnet: #7a0019;
    --garnet-3: #c51f46;
    --white: #ffffff;
    --muted: #b8b8b8;
    --border: rgba(255,255,255,.16);
    --glass: rgba(255,255,255,.075);
    --shadow: 0 30px 90px rgba(0,0,0,.55);
}

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

body {
    font-family: 'Inter', system-ui, sans-serif;
    background: radial-gradient(circle at 15% 10%, rgba(122,0,25,.7), transparent 32%),
                radial-gradient(circle at 85% 5%, rgba(197,31,70,.28), transparent 30%),
                linear-gradient(135deg, #000, #080808 48%, #160006);
    color: var(--white);
    min-height: 100vh;
    overflow-x: hidden;
}

.wrap {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

/* Header */
header {
    padding: 26px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 950;
    letter-spacing: -1px;
    font-size: 1.55rem;
}

.logo-mark {
    width: 46px;
    height: 46px;
    border-radius: 15px;
    background: linear-gradient(135deg, var(--white), #d8d8d8);
    display: grid;
    place-items: center;
    box-shadow: 0 14px 35px rgba(122,0,25,.65);
    color: var(--garnet);
    font-weight: 1000;
}

nav {
    display: flex;
    align-items: center;
    gap: 22px;
    color: var(--muted);
    font-weight: 800;
    font-size: .95rem;
}

nav a:hover { color: white; }

.nav-cta {
    background: linear-gradient(135deg, var(--garnet), var(--garnet-3));
    padding: 11px 18px;
    border-radius: 999px;
    box-shadow: 0 12px 35px rgba(122,0,25,.55);
    color: white;
}

/* Hero */
.hero {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 42px;
    align-items: center;
    min-height: 680px;
    margin: 40px auto;
}

.eyebrow {
    display: inline-flex;
    gap: 10px;
    align-items: center;
    padding: 9px 14px;
    border: 1px solid rgba(255,255,255,.22);
    background: rgba(122,0,25,.22);
    border-radius: 999px;
    font-weight: 900;
    margin-bottom: 24px;
}

h1 {
    font-size: clamp(3.2rem, 7vw, 6.7rem);
    line-height: .9;
    letter-spacing: -5px;
}

h1 span {
    background: linear-gradient(90deg, var(--white), #e7e7e7, var(--garnet-3));
    -webkit-background-clip: text;
    color: transparent;
}

.lead {
    color: var(--muted);
    font-size: 1.18rem;
    line-height: 1.75;
    margin: 26px 0 32px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn {
    padding: 15px 22px;
    border-radius: 16px;
    font-weight: 950;
}

.btn-primary {
    background: linear-gradient(135deg, var(--garnet), var(--garnet-3));
    color: white;
    box-shadow: 0 20px 45px rgba(122,0,25,.55);
}

.btn-secondary {
    background: rgba(255,255,255,.08);
    color: white;
}

/* Scoreboard */
.scoreboard {
    border: 1px solid rgba(255,255,255,.18);
    background: linear-gradient(180deg, rgba(255,255,255,.12), rgba(255,255,255,.035)), rgba(0,0,0,.78);
    border-radius: 34px;
    padding: 24px;
    box-shadow: var(--shadow);
}

.board-top {
    display: flex;
    justify-content: space-between;
    margin-bottom: 18px;
}

.rank-card {
    display: grid;
    grid-template-columns: 54px 1fr auto;
    gap: 15px;
    align-items: center;
    padding: 17px;
    border-radius: 22px;
    margin-bottom: 13px;
    background: rgba(255,255,255,.075);
    border: 1px solid rgba(255,255,255,.12);
}

.rank {
    width: 54px;
    height: 54px;
    border-radius: 17px;
    display: grid;
    place-items: center;
    font-size: 1.25rem;
    font-weight: 1000;
    background: linear-gradient(135deg, var(--garnet), var(--garnet-3));
}

/* Feature Grid - FIXED */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin: 60px auto 80px;
    width: 100%;
}

.feature {
    padding: 26px;
    border-radius: 28px;
    background: linear-gradient(180deg, rgba(122,0,25,.16), rgba(255,255,255,.055));
    border: 1px solid var(--border);
    box-shadow: 0 18px 45px rgba(0,0,0,.3);
}

.feature h2 {
    margin-bottom: 10px;
    font-size: 1.35rem;
}

.feature p {
    color: var(--muted);
    line-height: 1.65;
}

/* Footer */
footer {
    margin: 60px auto 0;
    padding: 30px 0 45px;
    border-top: 1px solid var(--border);
    color: var(--muted);
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    font-weight: 750;
}

/* Responsive */
@media (max-width: 900px) {
    nav { display: none; }
    .hero { grid-template-columns: 1fr; min-height: auto; }
    .feature-grid { grid-template-columns: 1fr; }
}