* {
    box-sizing: border-box;
}

body {
    margin: 0;
    min-height: 100vh;
    font-family: Arial, sans-serif;
    color: white;
    background:
        radial-gradient(circle at 72% 10%, rgba(255, 0, 0, .34), transparent 30%),
        radial-gradient(circle at 8% 88%, rgba(255, 40, 40, .18), transparent 34%),
        linear-gradient(135deg, rgba(5, 8, 16, .95), rgba(18, 0, 0, .88)),
        url("images/chicago.jpg.png");
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.hero {
    min-height: 100vh;
    display: grid;
    grid-template-rows: auto 1fr;
    padding: 28px;
}

nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 18px 22px;
    border: 1px solid rgba(255, 70, 70, .18);
    border-radius: 24px;
    background: rgba(8, 10, 18, .72);
    box-shadow: 0 24px 60px rgba(0,0,0,.32);
    backdrop-filter: blur(12px);
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0;
}

.logo::before {
    content: "RL";
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    border-radius: 16px;
    background: linear-gradient(135deg, #ff3232, #790000);
    color: white;
    font-size: 17px;
    font-weight: 900;
    box-shadow: 0 12px 28px rgba(255,0,0,.26);
}

.logo::after {
    content: "Redline Crew";
    color: white;
    font-size: 18px;
    font-weight: 900;
}

.logo span {
    display: none;
}

.menu a,
.main-btn,
.secondary-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    border-radius: 16px;
    font-weight: 900;
}

.menu a {
    padding: 13px 18px;
    border: 1px solid rgba(255, 130, 130, .28);
    background: linear-gradient(135deg, #ff4242, #8f0000);
}

.content {
    width: min(1180px, 100%);
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(360px, .95fr);
    gap: 18px;
    align-self: center;
    margin: 28px auto 0;
}

.hero-copy,
.hero-panel,
.stat-card {
    border: 1px solid rgba(255, 70, 70, .18);
    border-radius: 24px;
    background: rgba(8, 10, 18, .82);
    box-shadow: 0 24px 60px rgba(0,0,0,.4);
    backdrop-filter: blur(10px);
}

.hero-copy {
    min-height: 540px;
    display: flex;
    flex-direction: column;
    justify-content: end;
    padding: 42px;
    background:
        linear-gradient(90deg, rgba(6,8,15,.94), rgba(80,0,0,.30)),
        url("images/chicago.jpg.png");
    background-size: cover;
    background-position: center;
}

.tag {
    margin: 0 0 14px;
    color: #ff5656;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 3px;
}

h1 {
    max-width: 820px;
    margin: 0 0 10px;
    font-size: clamp(48px, 8vw, 104px);
    line-height: .9;
}

h2 {
    margin: 0 0 18px;
    color: #f2f2f7;
    font-size: clamp(22px, 3vw, 34px);
}

.story {
    max-width: 620px;
    margin: 0;
    color: #d0d0dc;
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}

.main-btn,
.secondary-btn {
    padding: 15px 20px;
}

.main-btn {
    background: linear-gradient(135deg, #ff4242, #8f0000);
    border: 1px solid rgba(255, 130, 130, .32);
}

.secondary-btn {
    border: 1px solid rgba(255,255,255,.12);
    background: rgba(255,255,255,.06);
}

.hero-panel {
    padding: 24px;
}

.hero-panel h3 {
    margin: 0 0 14px;
    font-size: 24px;
}

.panel-list {
    display: grid;
    gap: 12px;
}

.panel-list div {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    padding: 16px;
    border-radius: 18px;
    background: rgba(255,255,255,.05);
}

.panel-list span {
    color: #b7b7c8;
}

.panel-list strong {
    color: #fff;
}

.stat-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-top: 14px;
}

.stat-card {
    padding: 18px;
}

.stat-card strong {
    display: block;
    margin-bottom: 6px;
    color: white;
    font-size: 28px;
}

.stat-card span {
    color: #b7b7c8;
}

@media (max-width: 960px) {
    .content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 650px) {
    .hero {
        padding: 14px;
    }

    nav {
        align-items: stretch;
        flex-direction: column;
    }

    .menu a {
        width: 100%;
    }

    .hero-copy {
        min-height: 440px;
        padding: 28px;
    }

    .stat-grid {
        grid-template-columns: 1fr;
    }
}
