* {
    box-sizing: border-box;
}

:root {
    --bg: #181c20;
    --bg-soft: #20252b;
    --panel: #262c33;
    --panel-2: #2d343c;
    --line: rgba(255, 255, 255, 0.08);
    --text: #f5f7f8;
    --text-soft: rgba(245, 247, 248, 0.72);
    --accent: #f28c28;
    --accent-2: #ffab53;
    --shadow: 0 20px 60px rgba(0, 0, 0, 0.28);
    --radius-lg: 30px;
    --radius-md: 22px;
    --radius-sm: 14px;
    --container: 1240px;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    background:
        linear-gradient(rgba(24, 28, 32, 0.86), rgba(24, 28, 32, 0.92)),
url(../../../Downloads/jkgarage_starter/%27assets/images/hero-bg.jpg%27) center center / cover no-repeat fixed;
    color: var(--text);
}

a {
    color: inherit;
    text-decoration: none;
}

.site-shell {
    min-height: 100vh;
}

.container {
    width: min(var(--container), calc(100% - 32px));
    margin: 0 auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(12px);
    background: rgba(24, 28, 32, 0.5);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.nav-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    min-height: 82px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 14px;
}

.brand-mark {
    width: 48px;
    height: 48px;
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--accent), var(--accent-2));
    color: #1b1f24;
    font-weight: 800;
    font-size: 18px;
    box-shadow: 0 10px 30px rgba(242, 140, 40, 0.32);
}

.brand-text {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.brand-text strong {
    font-size: 20px;
    line-height: 1;
}

.brand-text small {
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(245, 247, 248, 0.55);
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 26px;
}

.main-nav a {
    color: rgba(245, 247, 248, 0.82);
    font-size: 15px;
}

.main-nav a:hover,
.footer-links a:hover,
.text-link:hover {
    color: var(--accent-2);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 22px;
    border-radius: 16px;
    font-weight: 700;
    font-size: 14px;
    transition: 0.2s ease;
    border: 1px solid transparent;
}

.btn:hover {
    transform: translateY(-1px);
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent), var(--accent-2));
    color: #1b1f24;
    box-shadow: 0 12px 32px rgba(242, 140, 40, 0.25);
}

.btn-outline {
    background: rgba(255, 255, 255, 0.04);
    border-color: var(--line);
    color: var(--text);
}

.hero {
    position: relative;
    min-height: calc(100vh - 82px);
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 78% 20%, rgba(242, 140, 40, 0.22), transparent 26%),
        radial-gradient(circle at 15% 70%, rgba(242, 140, 40, 0.12), transparent 18%),
        linear-gradient(90deg, rgba(24, 28, 32, 0.92) 0%, rgba(24, 28, 32, 0.76) 48%, rgba(24, 28, 32, 0.54) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 44px;
    align-items: end;
    padding-top: 80px;
    padding-bottom: 80px;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    padding: 10px 16px;
    border-radius: 999px;
    background: rgba(242, 140, 40, 0.12);
    border: 1px solid rgba(242, 140, 40, 0.24);
    color: #ffd0a0;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 11px;
    font-weight: 700;
}

.hero-copy h1 {
    margin: 22px 0 18px;
    font-size: clamp(42px, 7vw, 76px);
    line-height: 0.98;
    letter-spacing: -0.03em;
}

.hero-copy h1 span {
    color: var(--accent-2);
}

.hero-copy p,
.section-head p,
.lead,
.feature-card p,
.vehicle-body p,
.hero-card p,
.stat-card span,
.episode-card span,
.cta-box p {
    color: var(--text-soft);
    line-height: 1.7;
}

.hero-copy p {
    max-width: 760px;
    font-size: 18px;
}

.hero-actions,
.button-row,
.cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 28px;
}

.glass-card {
    background: rgba(255, 255, 255, 0.055);
    backdrop-filter: blur(18px);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
}

.hero-cards {
    display: grid;
    gap: 18px;
}

.hero-card {
    border-radius: var(--radius-lg);
    padding: 28px;
}

.card-label,
.badge {
    display: inline-flex;
    padding: 7px 12px;
    border-radius: 999px;
    background: rgba(242, 140, 40, 0.12);
    border: 1px solid rgba(242, 140, 40, 0.2);
    color: #ffc88f;
    font-size: 12px;
    font-weight: 700;
}

.hero-card h3,
.vehicle-body h3,
.feature-card h3,
.video-preview h3,
.cta-box h2,
.section-head h2 {
    margin: 16px 0 10px;
}

.hero-card h3 {
    font-size: 28px;
}

.hero-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.stat-card {
    background: rgba(38, 44, 51, 0.94);
    border: 1px solid var(--line);
    border-radius: 24px;
    padding: 22px;
    box-shadow: var(--shadow);
}

.stat-card strong {
    display: block;
    font-size: 32px;
    color: var(--accent-2);
    margin-bottom: 8px;
}

.section {
    padding: 96px 0;
}

.section-alt {
    background: rgba(29, 34, 39, 0.72);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.section-head {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    align-items: end;
    margin-bottom: 32px;
}

.section-head h2 {
    font-size: clamp(32px, 4vw, 46px);
    line-height: 1.05;
}

.cards-grid,
.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.vehicle-card,
.feature-card {
    background: rgba(38, 44, 51, 0.94);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.vehicle-image {
    height: 220px;
}

.placeholder-image {
    background:
        linear-gradient(135deg, rgba(242, 140, 40, 0.15), rgba(255, 255, 255, 0.02)),
        linear-gradient(180deg, #373e46, #21272d);
}

.vehicle-body,
.feature-card,
.video-preview,
.cta-box {
    padding: 28px;
}

.text-link {
    display: inline-block;
    margin-top: 18px;
    color: var(--accent-2);
    font-weight: 700;
}

.two-column {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 30px;
    align-items: center;
}

.video-preview {
    border-radius: 34px;
}

.video-box {
    min-height: 280px;
    border-radius: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #394048, #20262d);
    color: rgba(245, 247, 248, 0.72);
    font-weight: 700;
    letter-spacing: 0.05em;
}

.episode-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-top: 18px;
}

.episode-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 18px;
}

.episode-card strong {
    display: block;
    margin-bottom: 7px;
}

.feature-card h3 {
    font-size: 24px;
    margin-top: 0;
}

.cta-section {
    padding-top: 0;
}

.cta-box {
    background: rgba(38, 44, 51, 0.95);
    border: 1px solid var(--line);
    border-radius: 34px;
    box-shadow: var(--shadow);
    display: flex;
    justify-content: space-between;
    gap: 28px;
    align-items: center;
}

.site-footer {
    padding: 26px 0 40px;
}

.footer-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 18px;
    color: rgba(245, 247, 248, 0.72);
    font-size: 14px;
}

.footer-row strong {
    display: block;
    color: var(--text);
    margin-bottom: 4px;
}

.footer-links {
    display: flex;
    gap: 18px;
}

@media (max-width: 1080px) {
    .hero-content,
    .section-head,
    .two-column,
    .cards-grid,
    .feature-grid {
        grid-template-columns: 1fr;
    }

    .hero-content {
        gap: 28px;
    }

    .hero-stats,
    .episode-grid {
        grid-template-columns: 1fr;
    }

    .cta-box {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 820px) {
    body {
        background-attachment: scroll;
    }

    .main-nav,
    .nav-cta {
        display: none;
    }

    .nav-bar {
        min-height: 76px;
    }

    .section {
        padding: 72px 0;
    }

    .hero {
        min-height: auto;
    }

    .hero-content {
        padding-top: 52px;
        padding-bottom: 52px;
    }

    .hero-copy p {
        font-size: 16px;
    }
}

@media (max-width: 560px) {
    .container {
        width: min(var(--container), calc(100% - 22px));
    }

    .brand-text strong {
        font-size: 18px;
    }

    .hero-card,
    .vehicle-body,
    .feature-card,
    .video-preview,
    .cta-box {
        padding: 22px;
    }

    .btn {
        width: 100%;
    }

    .hero-actions,
    .button-row,
    .cta-actions {
        flex-direction: column;
    }

    .site-footer {
        padding-bottom: 30px;
    }

    .footer-row {
        flex-direction: column;
        align-items: flex-start;
    }
}
