/* ================================================================
   VintageCodeAcademy — home.css
   Estilos customizados da Landing Page / Home Page
   ================================================================ */

/* ── Variáveis ──────────────────────────────────────────────── */
:root {
    --vca-bg:       #08111f;
    --vca-surface:  rgba(13, 27, 46, 0.8);
    --vca-surface2: rgba(19, 39, 66, 0.74);
    --vca-cyan:     #89d8ff;
    --vca-gold:     #d7b07a;
    --vca-gold-soft:#f0d7ac;
    --vca-ember:    #f0835e;
    --vca-border:   rgba(215, 176, 122, 0.16);
    --vca-border-ice: rgba(137, 216, 255, 0.18);
    --vca-text:     rgba(245, 239, 228, 0.92);
    --vca-muted:    rgba(230, 219, 202, 0.7);
    --vca-muted2:   rgba(230, 219, 202, 0.42);
    --font-display: 'Cormorant Garamond', 'Times New Roman', serif;
    --font-mono:    'JetBrains Mono', 'Courier New', monospace;
    --font-body:    'Manrope', 'Inter', sans-serif;
}

/* ── Reset página home ──────────────────────────────────────── */
.home-page {
    min-height: 100vh;
    background:
        radial-gradient(circle at 15% 12%, rgba(215, 176, 122, 0.1), transparent 24%),
        radial-gradient(circle at 85% 18%, rgba(137, 216, 255, 0.12), transparent 24%),
        radial-gradient(circle at 68% 78%, rgba(240, 131, 94, 0.09), transparent 18%),
        linear-gradient(180deg, #0d1728 0%, var(--vca-bg) 100%);
    color: var(--vca-text);
    font-family: var(--font-body);
    overflow-x: hidden;
    position: relative;
}

.home-page::before,
.home-page::after {
    content: '';
    position: fixed;
    inset: auto;
    border-radius: 999px;
    filter: blur(90px);
    pointer-events: none;
    z-index: 0;
}

.home-page::before {
    top: 4%;
    left: -8%;
    width: 260px;
    height: 260px;
    background: rgba(215, 176, 122, 0.12);
}

.home-page::after {
    right: -8%;
    bottom: 16%;
    width: 320px;
    height: 320px;
    background: rgba(137, 216, 255, 0.12);
}

/* reset h1-h6 dentro da home para não herdar estilos do MudBlazor/browser */
.home-page h1,
.home-page h2,
.home-page h3,
.home-page h4 {
    margin: 0;
    padding: 0;
    border: none;
    outline: none;
    box-shadow: none;
    font-family: var(--font-display);
}

/* ================================================================
   NAVBAR
   ================================================================ */
.vca-navbar {
    position: sticky;
    top: 0;
    z-index: 100;
    background: linear-gradient(180deg, rgba(11, 21, 37, 0.92), rgba(8, 17, 31, 0.84));
    backdrop-filter: blur(18px) saturate(140%);
    -webkit-backdrop-filter: blur(18px) saturate(140%);
    border-bottom: 1px solid var(--vca-border);
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.18);
}

.vca-navbar__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    height: 60px;
    display: flex;
    align-items: center;
    gap: 32px;
}

.vca-navbar__logo {
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 17px;
    letter-spacing: 0.04em;
    flex-shrink: 0;
}

.vca-navbar__brasao {
    width: 26px !important;
    height: 26px !important;
    max-width: 26px;
    max-height: 26px;
    object-fit: contain;
    margin-right: 8px;
    flex-shrink: 0;
    filter: drop-shadow(0 0 8px rgba(215,176,122,0.32));
}

.vca-navbar__logo-vca  { color: var(--vca-gold-soft); }
.vca-navbar__logo-sep  { color: rgba(255,255,255,0.2); margin: 0 4px; }
.vca-navbar__logo-name { color: rgba(245,239,228,0.84); font-size: 14px; }

.vca-navbar__links {
    display: flex;
    align-items: center;
    gap: 24px;
    flex: 1;
}

.vca-navbar__link {
    text-decoration: none;
    color: rgba(230, 219, 202, 0.64);
    font-size: 13px;
    font-weight: 600;
    transition: color 0.15s ease, text-shadow 0.15s ease;
}

.vca-navbar__link:hover {
    color: var(--vca-gold-soft);
    text-shadow: 0 0 18px rgba(215,176,122,0.2);
}

.vca-navbar__cta { margin-left: auto; }

.vca-navbar__btn-cta {
    display: inline-block;
    text-decoration: none;
    background: linear-gradient(135deg, var(--vca-gold-soft), var(--vca-gold), #bf8b50);
    color: #08111f;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 13px;
    padding: 10px 20px;
    border-radius: 999px;
    box-shadow: 0 18px 34px rgba(215,176,122,0.2);
    transition: opacity 0.15s ease, transform 0.15s ease, box-shadow 0.15s ease;
}

.vca-navbar__btn-cta:hover {
    opacity: 0.88;
    transform: translateY(-1px);
    box-shadow: 0 22px 42px rgba(215,176,122,0.28);
}

/* hamburger */
.vca-navbar__hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    flex-direction: column;
    gap: 5px;
    margin-left: auto;
}

.vca-navbar__ham-bar {
    display: block;
    width: 22px;
    height: 2px;
    background: rgba(255,255,255,0.7);
    border-radius: 2px;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.vca-navbar__ham-bar--mid-open { opacity: 0; }
.vca-navbar__ham-bar--top-open { transform: translateY(7px) rotate(45deg); }
.vca-navbar__ham-bar--bot-open { transform: translateY(-7px) rotate(-45deg); }

/* mobile menu */
.vca-navbar__mobile-menu {
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 12px 24px 20px;
    border-top: 1px solid rgba(215,176,122,0.12);
    background: rgba(8,17,31,0.98);
    animation: fadeDown 0.2s ease;
}

.vca-navbar__mobile-link {
    text-decoration: none;
    color: rgba(230,219,202,0.74);
    font-size: 15px;
    font-weight: 500;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255,255,255,0.04);
    transition: color 0.15s ease;
}

.vca-navbar__mobile-link:hover { color: var(--vca-gold-soft); }

.vca-navbar__btn-cta--mobile {
    margin-top: 16px;
    text-align: center;
    padding: 12px 0;
}

@keyframes fadeDown {
    from { opacity: 0; transform: translateY(-8px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* ================================================================
   HOME PAGE SECTIONS
   ================================================================ */
.home-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 24px;
    position: relative;
    z-index: 1;
}

.home-section--sm { padding: 40px 24px; }

.home-label {
    font-family: var(--font-mono);
    font-size: 10px;
    color: var(--vca-gold-soft);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.home-title {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 40px;
    letter-spacing: -0.03em;
    color: var(--vca-gold-soft);
    margin: 0 0 8px;
    line-height: 1.05;
}

.home-subtitle {
    font-size: 15px;
    color: var(--vca-muted);
    line-height: 1.7;
    max-width: 520px;
    margin-bottom: 40px;
}

/* ================================================================
   HERO
   ================================================================ */
.hero {
    min-height: calc(100vh - 60px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 80px 24px 60px;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.hero::before {
    content: '';
    position: absolute;
    top: -80px;
    right: -100px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(215,176,122,0.16), transparent 70%);
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    left: -120px;
    bottom: -140px;
    width: 420px;
    height: 420px;
    background: radial-gradient(circle, rgba(240,131,94,0.1), transparent 70%);
    pointer-events: none;
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(240, 215, 172, 0.08);
    border: 1px solid rgba(240, 215, 172, 0.18);
    border-radius: 999px;
    padding: 9px 16px;
    font-family: var(--font-mono);
    font-size: 11px;
    color: rgba(245,239,228,0.8);
    margin-bottom: 28px;
    animation: heroFadeUp 0.6s ease both;
    box-shadow: 0 0 28px rgba(215,176,122,0.12);
}

.hero__badge-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--vca-gold-soft), var(--vca-gold), var(--vca-ember));
    animation: pulse 2s ease infinite;
    box-shadow: 0 0 14px rgba(215,176,122,0.34);
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50%       { opacity: 0.3; }
}

.hero__h1 {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 72px;
    letter-spacing: -0.04em;
    line-height: 0.92;
    color: var(--vca-gold-soft);
    margin: 0 0 20px;
    padding: 0;
    border: none;
    outline: none;
    box-shadow: none;
    animation: heroFadeUp 0.6s 0.1s ease both;
}

.hero__h1-accent {
    background: linear-gradient(135deg, var(--vca-gold-soft), var(--vca-gold) 48%, #f6c790 74%, var(--vca-ember));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 24px rgba(215,176,122,0.16);
}

.hero__subtitle {
    font-size: 16px;
    color: var(--vca-muted);
    max-width: 620px;
    line-height: 1.75;
    margin: 0 auto 36px;
    animation: heroFadeUp 0.6s 0.2s ease both;
}

.hero__ctas {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
    animation: heroFadeUp 0.6s 0.3s ease both;
}

.hero__btn-primary {
    display: inline-block;
    text-decoration: none;
    background: linear-gradient(135deg, var(--vca-gold-soft), var(--vca-gold), #bf8b50);
    color: #08111f;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 14px;
    padding: 14px 28px;
    border-radius: 16px;
    transition: opacity 0.15s ease, transform 0.15s ease, box-shadow 0.15s ease;
    box-shadow: 0 18px 34px rgba(215,176,122,0.22);
}

.hero__btn-primary:hover {
    opacity: 0.9;
    transform: translateY(-2px);
    box-shadow: 0 22px 42px rgba(215,176,122,0.28);
}

.hero__btn-secondary {
    display: inline-block;
    text-decoration: none;
    color: rgba(245,239,228,0.82);
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 14px;
    padding: 14px 28px;
    border-radius: 16px;
    border: 1px solid rgba(215,176,122,0.2);
    background: linear-gradient(135deg, rgba(240,215,172,0.1), rgba(19,39,66,0.4));
    box-shadow: 0 0 28px rgba(215,176,122,0.12);
    transition: border-color 0.15s ease, color 0.15s ease, transform 0.15s ease, box-shadow 0.15s ease;
}

.hero__btn-secondary:hover {
    border-color: rgba(215,176,122,0.34);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 0 34px rgba(215,176,122,0.18);
}

@keyframes heroFadeUp {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* ── Stats strip ────────────────────────────────────────────── */
.stats-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 26px;
    margin-top: 60px;
    width: 100%;
    max-width: 700px;
    animation: heroFadeUp 0.6s 0.4s ease both;
    overflow: hidden;
    background: linear-gradient(180deg, rgba(13,27,46,0.82), rgba(9,18,31,0.78));
    backdrop-filter: blur(20px);
}

.stats-strip__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 16px 8px;
    border-right: 1px solid rgba(255,255,255,0.05);
}

.stats-strip__item:last-child { border-right: none; }

.stats-strip__value {
    font-family: var(--font-mono);
    font-size: 17px;
    font-weight: 700;
    color: var(--vca-gold-soft);
    letter-spacing: 0.02em;
}

.stats-strip__label {
    font-family: var(--font-mono);
    font-size: 9px;
    color: var(--vca-muted2);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-top: 3px;
    text-align: center;
}

/* ================================================================
   TRILHAS GRID
   ================================================================ */
.trails-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 16px;
    max-width: 900px;
    margin: 0 auto;
}

/* ── Trail Card ─────────────────────────────────────────────── */
.trail-card {
    background: linear-gradient(180deg, rgba(13, 27, 46, 0.84), rgba(9, 18, 31, 0.82));
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 22px;
    padding: 18px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    overflow: hidden;
    transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
    backdrop-filter: blur(18px);
}

.trail-card--hover {
    cursor: pointer;
}

.trail-card--hover:hover {
    border-color: rgba(215,176,122,0.3);
    transform: translateY(-2px);
    box-shadow: 0 24px 48px rgba(3, 9, 18, 0.28);
}

.trail-card__header {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.trail-card__image-wrapper {
    position: relative;
    width: calc(100% + 36px);
    margin: -18px -18px 6px;
    height: 160px;
    background: linear-gradient(180deg, rgba(10,20,34,0.92), rgba(7,14,25,0.94));
    overflow: hidden;
    border-bottom: 1px solid var(--vca-border);
    flex-shrink: 0;
}

.trail-card__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.4s ease;
}

.trail-card--hover:hover .trail-card__image {
    transform: scale(1.04);
}

.trail-card__level-badge {
    font-family: var(--font-mono);
    font-size: 10px;
    font-weight: 600;
    padding: 3px 8px;
    border-radius: 999px;
    letter-spacing: 0.04em;
}

.trail-card__level-badge--floating {
    position: absolute;
    top: 10px;
    right: 10px;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    background: rgba(0, 0, 0, 0.55) !important;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.trail-card__level-badge--init  { background: rgba(215,176,122,0.14); color: var(--vca-gold-soft); }
.trail-card__level-badge--inter { background: rgba(137,216,255,0.12); color: var(--vca-cyan); }
.trail-card__level-badge--adv   { background: rgba(240,131,94,0.14); color: var(--vca-ember); }

.trail-card__title {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 700;
    color: var(--vca-gold-soft);
    line-height: 1.05;
}

.trail-card__stack {
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--vca-muted2);
    letter-spacing: 0.02em;
}

.trail-card__footer {
    display: flex;
    align-items: center;
    gap: 6px;
    padding-top: 10px;
    border-top: 1px solid rgba(255,255,255,0.04);
    margin-top: auto;
}

.trail-card__xp {
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--vca-muted2);
}

.trail-card__xp--cyan { color: var(--vca-gold); margin-left: auto; }
.trail-card__sep      { color: rgba(255,255,255,0.1); }

/* ================================================================
   SOBRE / MVV
   ================================================================ */
.mvv-container {
    background: linear-gradient(180deg, rgba(13, 27, 46, 0.84), rgba(9, 18, 31, 0.82));
    border: 1px solid var(--vca-border);
    border-radius: 28px;
    padding: 32px;
    backdrop-filter: blur(18px);
}

.mvv-intro {
    font-size: 14px;
    color: var(--vca-muted);
    line-height: 1.75;
    margin-bottom: 28px;
    max-width: 680px;
}

.mvv-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.mvv-card {
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.04);
    border-radius: 20px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.mvv-card__icon {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, rgba(240,215,172,0.2), rgba(240,131,94,0.08));
    border: 1px solid rgba(215,176,122,0.12);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.mvv-card__title {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 700;
    color: var(--vca-gold-soft);
}

.mvv-card__desc {
    font-size: 12px;
    color: var(--vca-muted2);
    line-height: 1.6;
}

/* ================================================================
   SISTEMA DE NÍVEIS + VINTAGE LABS
   ================================================================ */
.levels-strip {
    display: flex;
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 24px;
    overflow: hidden;
    margin-bottom: 16px;
    background: linear-gradient(180deg, rgba(13, 27, 46, 0.84), rgba(9, 18, 31, 0.82));
    backdrop-filter: blur(16px);
}

.levels-strip__item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 14px 8px;
    border-right: 1px solid rgba(255,255,255,0.06);
    background: transparent;
}

.levels-strip__item:last-child {
    border-right: none;
    background: linear-gradient(135deg, rgba(215,176,122,0.12), rgba(240,131,94,0.08));
    border-color: var(--vca-border);
}

.levels-strip__number {
    font-family: var(--font-mono);
    font-size: 18px;
    font-weight: 800;
    color: var(--vca-gold-soft);
}

.levels-strip__name {
    font-family: var(--font-mono);
    font-size: 9px;
    color: var(--vca-muted2);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-top: 4px;
    text-align: center;
}

/* ================================================================
   VINTAGE LABS — PROGRAMA EXCLUSIVO
   ================================================================ */
.vintage-labs-section {
    margin-top: 56px;
    background: linear-gradient(135deg, rgba(215,176,122,0.08), transparent 40%), linear-gradient(180deg, rgba(13, 27, 46, 0.84), rgba(9, 18, 31, 0.82));
    border: 1px solid var(--vca-border);
    border-radius: 30px;
    padding: 36px 32px;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(18px);
}

.vintage-labs-section::before {
    content: '';
    position: absolute;
    top: -100px; right: -100px;
    width: 280px; height: 280px;
    background: radial-gradient(circle, rgba(215,176,122,0.14), transparent 70%);
    pointer-events: none;
}

.vintage-labs__h2 {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 38px;
    color: var(--vca-gold-soft);
    margin: 6px 0 14px;
    line-height: 1.02;
}

.vintage-labs__intro {
    font-size: 13px;
    color: var(--vca-muted);
    line-height: 1.75;
    max-width: 760px;
    margin-bottom: 28px;
}

.vintage-labs__intro strong { color: rgba(255,255,255,0.9); font-weight: 700; }

.vintage-labs__highlight {
    color: var(--vca-gold-soft);
    font-family: var(--font-mono);
    font-weight: 600;
    background: linear-gradient(135deg, rgba(240,215,172,0.16), rgba(240,131,94,0.08));
    padding: 1px 8px;
    border-radius: 999px;
    border: 1px solid rgba(215,176,122,0.18);
}

.vintage-labs-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    margin-bottom: 32px;
}

.vintage-labs-card {
    background: rgba(255,255,255,0.025);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 20px;
    padding: 18px 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    transition: border-color 0.2s ease, transform 0.2s ease, background 0.2s ease;
}

.vintage-labs-card:hover {
    border-color: rgba(215,176,122,0.22);
    background: linear-gradient(135deg, rgba(215,176,122,0.08), rgba(240,131,94,0.04));
    transform: translateY(-2px);
}

.vintage-labs-card__icon {
    font-size: 20px;
    width: 36px; height: 36px;
    background: linear-gradient(135deg, rgba(240,215,172,0.2), rgba(240,131,94,0.08));
    border: 1px solid rgba(215,176,122,0.12);
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
}

.vintage-labs-card__title {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 700;
    color: var(--vca-gold-soft);
    line-height: 1.1;
}

.vintage-labs-card__desc {
    font-size: 11px;
    color: var(--vca-muted2);
    line-height: 1.6;
}

.vintage-labs-tracks {
    margin-bottom: 28px;
}

.vintage-labs-tracks__row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.vintage-labs-track {
    font-family: var(--font-mono);
    font-size: 11px;
    color: rgba(255,255,255,0.75);
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(215,176,122,0.12);
    padding: 6px 12px;
    border-radius: 999px;
    letter-spacing: 0.02em;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.vintage-labs-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 14px;
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.vintage-labs-cta__label {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 700;
    color: var(--vca-gold-soft);
}

/* ================================================================
   FOOTER
   ================================================================ */
.home-footer {
    border-top: 1px solid var(--vca-border);
    max-width: 1200px;
    margin: 0 auto;
    padding: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
}

.home-footer__brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.home-footer__brasao {
    width: 22px !important;
    height: 22px !important;
    max-width: 22px;
    max-height: 22px;
    object-fit: contain;
    flex-shrink: 0;
    opacity: 0.85;
    filter: drop-shadow(0 0 8px rgba(215,176,122,0.28));
}

.home-footer__copy {
    font-size: 11px;
    color: var(--vca-muted2);
}

.home-footer__links {
    display: flex;
    gap: 20px;
}

.home-footer__link {
    font-size: 11px;
    color: var(--vca-gold-soft);
    text-decoration: none;
    transition: opacity 0.15s;
}

.home-footer__link:hover { opacity: 0.75; }

/* ================================================================
   RESPONSIVIDADE
   ================================================================ */
@media (max-width: 768px) {
    .vca-navbar__links--desktop { display: none; }
    .vca-navbar__cta--desktop   { display: none; }
    .vca-navbar__hamburger      { display: flex; }

    .hero__h1      { font-size: 48px; }
    .hero__subtitle { font-size: 13px; }

    .stats-strip {
        grid-template-columns: repeat(2, 1fr);
    }
    .stats-strip__item:nth-child(2) { border-right: none; }
    .stats-strip__item:nth-child(3) { border-top: 1px solid var(--vca-border); }
    .stats-strip__item:nth-child(4) { border-top: 1px solid var(--vca-border); border-right: none; }

    .trails-grid { grid-template-columns: 1fr; max-width: 100%; }

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

    .levels-strip {
        flex-wrap: wrap;
    }
    .levels-strip__item {
        flex: 0 0 33.33%;
        border-bottom: 1px solid rgba(255,255,255,0.06);
    }

    .vintage-labs-section { padding: 24px 18px; }
    .vintage-labs-grid { grid-template-columns: repeat(2, 1fr); }
    .vintage-labs__h2 { font-size: 20px; }
    .vintage-labs-cta { flex-direction: column; align-items: stretch; }
    .vintage-labs-cta .hero__btn-primary { text-align: center; }

    .home-section { padding: 52px 20px; }
}

@media (max-width: 480px) {
    .hero { padding: 60px 20px 40px; }
    .hero__h1 { font-size: 38px; }
    .hero__ctas { flex-direction: column; align-items: center; }
    .hero__btn-primary, .hero__btn-secondary { width: 100%; text-align: center; }
    .stats-strip { max-width: 100%; }
    .mvv-container { padding: 20px; }
    .home-footer { flex-direction: column; text-align: center; }
}
