/* =====================================================
   VibeLab 2.0 — Community Page
   Standalone stylesheet (no styles.css dependency)
   Design: clean modern, Inter, lime green accent
   ===================================================== */

/* ---- Reset & Base ---- */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --lime:        #C5FF33;
    --lime-hover:  #AEED00;
    --black:       #0D0D0D;
    --white:       #FFFFFF;
    --bg:          #F2F2F2;
    --border:      #E8E8E8;
    --border-md:   #D4D4D4;
    --text-1:      #0D0D0D;
    --text-2:      #555555;
    --text-3:      #888888;
    --green-soft:  rgba(62, 207, 142, 0.12);
    --green:       #3ECF8E;
    --radius-sm:   8px;
    --radius-md:   12px;
    --radius-lg:   20px;
    --radius-pill: 999px;
    --shadow-sm:   0 1px 3px rgba(0,0,0,0.06), 0 4px 12px rgba(0,0,0,0.06);
    --shadow-md:   0 4px 16px rgba(0,0,0,0.08), 0 16px 40px rgba(0,0,0,0.08);
    --shadow-lg:   0 8px 24px rgba(0,0,0,0.1),  0 32px 64px rgba(0,0,0,0.12);
    --nav-h:       60px;
    --font:        'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

html { scroll-behavior: smooth; }

body {
    font-family: var(--font);
    background: var(--bg);
    color: var(--text-1);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a  { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: var(--font); }
img { display: block; max-width: 100%; }


/* =====================================================
   NAVBAR
   ===================================================== */

.vl-nav {
    position: fixed;
    inset: 0 0 auto;
    z-index: 100;
    height: var(--nav-h);
    background: var(--white);
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    padding: 0 clamp(20px, 4vw, 48px);
    gap: 32px;
    transition: box-shadow 0.2s;
}

.vl-nav.scrolled {
    box-shadow: 0 2px 16px rgba(0,0,0,0.08);
}

.vl-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

.vl-logo-mark {
    width: 32px;
    height: 32px;
    background: var(--black);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    line-height: 1;
    flex-shrink: 0;
}

.vl-logo-text {
    font-size: 15px;
    font-weight: 700;
    color: var(--black);
    letter-spacing: -0.3px;
}

.vl-nav-links {
    display: flex;
    align-items: center;
    gap: 2px;
    flex: 1;
}

.vl-nav-links a {
    padding: 7px 13px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-2);
    border-radius: var(--radius-sm);
    transition: color 0.15s, background 0.15s;
}

.vl-nav-links a:hover,
.vl-nav-links a.active {
    color: var(--text-1);
    background: var(--bg);
}

.vl-nav-right {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-left: auto;
}

/* Avatar */
.vl-avatar--nav {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: linear-gradient(135deg, #f6d365, #fda085);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    color: white;
    cursor: pointer;
    flex-shrink: 0;
}

/* Hamburger */
.vl-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    padding: 4px;
    cursor: pointer;
}

.vl-hamburger span {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--black);
    border-radius: 2px;
    transition: transform 0.2s, opacity 0.2s;
}


/* =====================================================
   BUTTONS
   ===================================================== */

.vl-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 9px 18px;
    font-size: 13px;
    font-weight: 600;
    border-radius: var(--radius-pill);
    border: 1.5px solid transparent;
    cursor: pointer;
    transition: all 0.18s ease;
    white-space: nowrap;
    text-decoration: none;
}

.vl-btn--lime {
    background: var(--lime);
    color: var(--black);
    border-color: var(--lime);
}
.vl-btn--lime:hover {
    background: var(--lime-hover);
    border-color: var(--lime-hover);
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(197, 255, 51, 0.4);
}

.vl-btn--dark {
    background: var(--black);
    color: var(--white);
    border-color: var(--black);
}
.vl-btn--dark:hover {
    opacity: 0.85;
    transform: translateY(-1px);
}

.vl-btn--outline {
    background: transparent;
    color: var(--text-1);
    border-color: var(--border-md);
}
.vl-btn--outline:hover {
    border-color: var(--black);
    background: var(--black);
    color: var(--white);
}


/* =====================================================
   AVATAR MICRO-COMPONENT
   ===================================================== */

.vl-av {
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: white;
    flex-shrink: 0;
    line-height: 1;
}

.vl-av--xs  { width: 22px; height: 22px; font-size: 9px; }
.vl-av--md  { width: 40px; height: 40px; font-size: 14px; }
.vl-av--lg  { width: 52px; height: 52px; font-size: 18px; }


/* =====================================================
   TAGS
   ===================================================== */

.vl-tag {
    display: inline-flex;
    align-items: center;
    padding: 4px 10px;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-pill);
    font-size: 12px;
    font-weight: 500;
    color: var(--text-2);
    white-space: nowrap;
}

.vl-tag--dark {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.15);
    color: rgba(255,255,255,0.7);
}

.vl-tag-row {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.vl-eyebrow {
    display: block;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-3);
    margin-bottom: 10px;
}

.vl-highlight {
    background: var(--lime);
    color: var(--black);
    padding: 1px 6px;
    border-radius: 5px;
    font-style: normal;
}

.vl-highlight--dark {
    background: var(--lime);
    color: var(--black);
}


/* =====================================================
   SECTION SKELETON
   ===================================================== */

.vl-section {
    padding: 80px 0;
    background: var(--white);
}

.vl-section--gray {
    background: var(--bg);
}

.vl-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 clamp(20px, 4vw, 48px);
}

.vl-section-hd {
    text-align: center;
    margin-bottom: 48px;
}

.vl-section-hd--row {
    text-align: left;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}

.vl-section-title {
    font-size: clamp(26px, 3.5vw, 38px);
    font-weight: 800;
    letter-spacing: -0.04em;
    color: var(--text-1);
    line-height: 1.1;
    margin-bottom: 10px;
}

.vl-section-sub {
    font-size: 15px;
    color: var(--text-2);
    line-height: 1.65;
    max-width: 500px;
    margin: 0 auto;
}

.vl-section-hd--row .vl-section-sub {
    margin: 0;
}

.vl-section-cta {
    text-align: center;
    margin-top: 36px;
}


/* =====================================================
   HERO
   ===================================================== */

.vl-hero {
    min-height: 100vh;
    padding-top: calc(var(--nav-h) + 60px);
    padding-bottom: 80px;
    padding-left:  clamp(20px, 4vw, 48px);
    padding-right: clamp(20px, 4vw, 48px);
    background: linear-gradient(160deg, var(--white) 0%, #F7F7F7 100%);
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

/* Hero badge */
.vl-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-pill);
    font-size: 13px;
    font-weight: 500;
    color: var(--text-2);
    margin-bottom: 24px;
    box-shadow: var(--shadow-sm);
}

.vl-live-dot {
    width: 7px;
    height: 7px;
    background: var(--green);
    border-radius: 50%;
    flex-shrink: 0;
    animation: livePulse 2s ease-in-out infinite;
}

@keyframes livePulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(62, 207, 142, 0.45); }
    60%       { box-shadow: 0 0 0 5px rgba(62, 207, 142, 0); }
}

/* Hero headline */
.vl-hero-headline {
    font-size: clamp(38px, 5.5vw, 66px);
    font-weight: 900;
    letter-spacing: -0.05em;
    line-height: 1.02;
    color: var(--text-1);
    margin-bottom: 20px;
}

.vl-hero-sub {
    font-size: 16px;
    color: var(--text-2);
    line-height: 1.7;
    margin-bottom: 28px;
    max-width: 420px;
}

/* Pulse stats row */
.vl-pulse-row {
    display: flex;
    align-items: center;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    margin-bottom: 28px;
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}

.vl-pulse-stat {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3px;
    padding: 16px 12px;
}

.vl-pulse-sep {
    width: 1px;
    height: 38px;
    background: var(--border);
    flex-shrink: 0;
}

.vl-pulse-num {
    font-size: 22px;
    font-weight: 800;
    letter-spacing: -0.04em;
    color: var(--text-1);
    line-height: 1;
}

.vl-pulse-label {
    font-size: 11px;
    font-weight: 500;
    color: var(--text-3);
    text-align: center;
    white-space: nowrap;
}

.vl-hero-cta {
    font-size: 14px;
    padding: 13px 28px;
}

/* --- Hero floating cards --- */
.vl-hero-visual {
    position: relative;
    height: 440px;
    pointer-events: none;
}

.vl-float-card {
    position: absolute;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}

.vl-float-card--1 {
    width: 240px;
    top: 24px;
    right: 0;
    animation: fc1 6s ease-in-out infinite;
}
.vl-float-card--2 {
    width: 210px;
    bottom: 80px;
    left: 24px;
    animation: fc2 7.5s ease-in-out infinite;
}
.vl-float-card--3 {
    width: 190px;
    bottom: 24px;
    right: 60px;
    border-radius: var(--radius-md);
    animation: fc3 5s ease-in-out infinite;
}

@keyframes fc1 { 0%,100% { transform: translateY(0) rotate(0deg); }    50% { transform: translateY(-10px) rotate(0.4deg); } }
@keyframes fc2 { 0%,100% { transform: translateY(-4px) rotate(-0.4deg); } 50% { transform: translateY(4px) rotate(0deg); } }
@keyframes fc3 { 0%,100% { transform: translateY(0); }  50% { transform: translateY(-6px); } }

.vl-float-thumb    { height: 130px; }
.vl-float-thumb--sm { height: 100px; }

.vl-float-body {
    padding: 14px 16px;
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.vl-float-title {
    font-size: 13px;
    font-weight: 700;
    color: var(--text-1);
    letter-spacing: -0.2px;
}

.vl-float-sub {
    font-size: 11px;
    color: var(--text-3);
}

.vl-float-user {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: 6px;
    font-size: 12px;
    font-weight: 500;
    color: var(--text-2);
}

.vl-float-user-row {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 14px 16px;
}

.vl-float-username {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-1);
}

.vl-building-badge {
    margin-left: auto;
    font-size: 11px;
    font-weight: 600;
    color: var(--green);
}


/* =====================================================
   CREATOR SPOTLIGHT
   ===================================================== */

.vl-spotlight-card {
    display: grid;
    grid-template-columns: 380px 1fr;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-md);
    background: var(--white);
}

.vl-spotlight-visual {
    min-height: 320px;
}

.vl-spotlight-body {
    padding: 36px;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.vl-spotlight-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.vl-avatar-row {
    display: flex;
    align-items: center;
    gap: 12px;
}

.vl-creator-name {
    font-size: 17px;
    font-weight: 800;
    letter-spacing: -0.3px;
    color: var(--text-1);
}

.vl-creator-handle {
    font-size: 13px;
    color: var(--text-3);
    font-weight: 500;
}

.vl-online-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px 10px;
    background: var(--green-soft);
    color: #1a8a5a;
    border-radius: var(--radius-pill);
    font-size: 12px;
    font-weight: 600;
}

.vl-spotlight-eyebrow {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-3);
    margin-bottom: -8px;
}

.vl-spotlight-bio {
    font-size: 15px;
    color: var(--text-2);
    line-height: 1.75;
}

.vl-detail-block {
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.vl-detail-label {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-3);
}

.vl-detail-text {
    font-size: 14px;
    color: var(--text-2);
    line-height: 1.65;
}

.vl-spotlight-quote {
    padding: 16px 20px;
    background: var(--bg);
    border-left: 3px solid var(--lime);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    font-size: 14px;
    color: var(--text-2);
    line-height: 1.65;
    font-style: italic;
}

.vl-spotlight-quote em {
    font-style: normal;
    font-weight: 600;
    color: var(--text-1);
    background: rgba(197, 255, 51, 0.4);
    padding: 0 3px;
    border-radius: 3px;
}


/* =====================================================
   PROJECT GRID (Raw Builds)
   ===================================================== */

.vl-tab-pills {
    display: flex;
    align-items: center;
    gap: 4px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-pill);
    padding: 4px;
    flex-shrink: 0;
}

.vl-tab {
    padding: 7px 16px;
    border: none;
    background: none;
    border-radius: var(--radius-pill);
    font-size: 13px;
    font-weight: 500;
    color: var(--text-2);
    cursor: pointer;
    transition: background 0.15s, color 0.15s;
    white-space: nowrap;
}

.vl-tab.active,
.vl-tab:hover {
    background: var(--black);
    color: var(--white);
}

.vl-projects-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 14px;
}

.vl-project-card {
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--border);
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.vl-project-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.vl-project-thumb {
    position: relative;
    aspect-ratio: 4/3;
}

.vl-wip-pill {
    position: absolute;
    top: 8px;
    left: 8px;
    padding: 3px 8px;
    background: rgba(0, 0, 0, 0.55);
    color: white;
    font-size: 10px;
    font-weight: 600;
    border-radius: var(--radius-pill);
    backdrop-filter: blur(6px);
}

.vl-wip-pill--new {
    background: rgba(62, 207, 142, 0.85);
    color: #0D0D0D;
}

.vl-project-info {
    padding: 12px;
}

.vl-project-name {
    font-size: 13px;
    font-weight: 700;
    color: var(--text-1);
    margin-bottom: 8px;
    letter-spacing: -0.2px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.vl-project-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 6px;
}

.vl-project-author {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
    color: var(--text-3);
    font-weight: 500;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.vl-project-stats {
    display: flex;
    gap: 8px;
    font-size: 12px;
    color: var(--text-3);
    font-weight: 500;
    flex-shrink: 0;
}


/* =====================================================
   WEEKEND VIBE CHALLENGE
   ===================================================== */

.vl-challenge-layout {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 20px;
    align-items: start;
}

/* Main challenge card — dark */
.vl-challenge-card {
    background: var(--black);
    border-radius: var(--radius-lg);
    padding: 40px;
    color: var(--white);
}

.vl-challenge-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 22px;
}

.vl-challenge-num {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255,255,255,0.4);
}

.vl-challenge-dates {
    font-size: 11px;
    color: rgba(255,255,255,0.3);
}

.vl-challenge-prompt {
    font-size: clamp(22px, 3vw, 30px);
    font-weight: 900;
    letter-spacing: -0.04em;
    line-height: 1.15;
    color: var(--white);
    margin-bottom: 16px;
}

.vl-challenge-desc {
    font-size: 14px;
    color: rgba(255,255,255,0.6);
    line-height: 1.75;
    margin-bottom: 20px;
}

/* Countdown */
.vl-countdown {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 32px;
}

.vl-cd-unit {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.vl-cd-num {
    display: block;
    font-size: clamp(28px, 3.5vw, 42px);
    font-weight: 900;
    letter-spacing: -0.04em;
    color: var(--lime);
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 10px;
    padding: 10px 14px;
    min-width: 64px;
    text-align: center;
    line-height: 1;
    font-variant-numeric: tabular-nums;
}

.vl-cd-label {
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255,255,255,0.35);
}

.vl-cd-sep {
    font-size: 28px;
    font-weight: 700;
    color: rgba(255,255,255,0.2);
    margin-bottom: 18px;
    line-height: 1;
}

.vl-challenge-footer {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.vl-challenge-count {
    font-size: 13px;
    color: rgba(255,255,255,0.4);
    font-weight: 500;
}

/* Side panels */
.vl-challenge-side {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.vl-side-panel {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 20px;
}

.vl-panel-label {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-3);
    margin-bottom: 14px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border);
}

/* Submissions mini-grid */
.vl-submissions-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

.vl-sub-thumb {
    position: relative;
    border-radius: var(--radius-sm);
    aspect-ratio: 4/3;
    cursor: pointer;
    transition: transform 0.18s;
    overflow: hidden;
}

.vl-sub-thumb:hover { transform: scale(1.03); }

.vl-sub-name {
    position: absolute;
    bottom: 6px;
    left: 8px;
    font-size: 11px;
    font-weight: 600;
    color: rgba(255,255,255,0.95);
    text-shadow: 0 1px 4px rgba(0,0,0,0.3);
}

.vl-sub-thumb--more {
    background: var(--bg);
    border: 1px dashed var(--border-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 600;
    color: var(--text-3);
}

/* Past challenges list */
.vl-past-list {
    display: flex;
    flex-direction: column;
}

.vl-past-row {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 8px;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: background 0.15s;
}

.vl-past-row:not(:last-child) {
    border-bottom: 1px solid var(--border);
}

.vl-past-row:hover { background: var(--bg); }

.vl-past-num {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--text-3);
    min-width: 24px;
}

.vl-past-prompt {
    flex: 1;
    font-size: 13px;
    color: var(--text-2);
    font-weight: 500;
    line-height: 1.3;
    transition: color 0.15s;
}

.vl-past-row:hover .vl-past-prompt { color: var(--text-1); }

.vl-past-count {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-3);
    white-space: nowrap;
}


/* =====================================================
   LAB LOGS
   ===================================================== */

.vl-lab-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.vl-lab-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    transition: box-shadow 0.2s, transform 0.2s;
}

.vl-lab-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.vl-lab-header {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.vl-lab-author {
    font-size: 15px;
    font-weight: 700;
    letter-spacing: -0.2px;
    color: var(--text-1);
    line-height: 1.2;
}

.vl-lab-date {
    font-size: 12px;
    color: var(--text-3);
    font-weight: 500;
}

.vl-lab-text {
    font-size: 14px;
    color: var(--text-2);
    line-height: 1.78;
    flex: 1;
}

.vl-lab-text em {
    font-style: normal;
    font-weight: 600;
    color: var(--text-1);
    background: rgba(197, 255, 51, 0.4);
    padding: 0 3px;
    border-radius: 3px;
}

.vl-lab-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 14px;
    border-top: 1px solid var(--border);
    margin-top: auto;
}

.vl-lab-mood {
    font-size: 13px;
    color: var(--text-3);
    font-weight: 500;
}

.vl-hype-btn {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 5px 12px;
    background: none;
    border: 1px solid var(--border);
    border-radius: var(--radius-pill);
    font-size: 13px;
    font-weight: 600;
    color: var(--text-2);
    cursor: pointer;
    transition: all 0.18s;
}

.vl-hype-btn:hover,
.vl-hype-btn.active {
    background: #FFF3EC;
    border-color: #F97316;
    color: #F97316;
}


/* =====================================================
   HYPE WALL
   ===================================================== */

.vl-hype-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.vl-hype-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    transition: box-shadow 0.2s, transform 0.2s;
}

.vl-hype-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.vl-hype-header {
    display: flex;
    align-items: center;
    gap: 12px;
}

.vl-hype-from {
    font-size: 15px;
    font-weight: 700;
    letter-spacing: -0.2px;
    color: var(--text-1);
    line-height: 1.2;
}

.vl-hype-time {
    font-size: 12px;
    color: var(--text-3);
    font-weight: 500;
}

.vl-hype-text {
    font-size: 14px;
    color: var(--text-2);
    line-height: 1.75;
    flex: 1;
}

.vl-mention {
    font-weight: 600;
    color: #2563EB;
}

.vl-hype-footer {
    display: flex;
    justify-content: flex-end;
    padding-top: 12px;
    border-top: 1px solid var(--border);
    margin-top: auto;
}

.vl-like-btn {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 5px 12px;
    background: none;
    border: 1px solid var(--border);
    border-radius: var(--radius-pill);
    font-size: 13px;
    font-weight: 600;
    color: var(--text-2);
    cursor: pointer;
    transition: all 0.18s;
}

.vl-like-btn:hover,
.vl-like-btn.active {
    background: #FFF0F6;
    border-color: #E84393;
    color: #E84393;
}

/* Hype CTA card */
.vl-hype-cta-card {
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 200px;
    background: var(--bg);
    border: 2px dashed var(--border-md);
    gap: 14px;
}

.vl-hype-cta-emoji {
    font-size: 36px;
    animation: floatEmoji 3s ease-in-out infinite;
    line-height: 1;
}

@keyframes floatEmoji {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(-6px); }
}

.vl-hype-cta-text {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-2);
    line-height: 1.5;
}


/* =====================================================
   COURSES
   ===================================================== */

.vl-courses-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.vl-course-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: transform 0.2s, box-shadow 0.2s;
    cursor: pointer;
}

.vl-course-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.vl-course-thumb {
    position: relative;
    aspect-ratio: 16/9;
}

.vl-level-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    padding: 3px 9px;
    border-radius: var(--radius-pill);
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.vl-level--beginner    { background: rgba(62,207,142,0.85);  color: #0a3d2a; }
.vl-level--intermediate{ background: rgba(99,102,241,0.85);  color: #fff; }
.vl-level--advanced    { background: rgba(239,68,68,0.85);   color: #fff; }

.vl-course-body {
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.vl-course-title {
    font-size: 14px;
    font-weight: 700;
    color: var(--text-1);
    line-height: 1.4;
    letter-spacing: -0.2px;
}

.vl-course-instructor {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: var(--text-3);
    font-weight: 500;
}

.vl-course-meta {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: var(--text-3);
    font-weight: 500;
}

.vl-meta-dot {
    width: 3px;
    height: 3px;
    background: var(--border-md);
    border-radius: 50%;
    flex-shrink: 0;
}

.vl-course-btn {
    font-size: 12px;
    padding: 8px 14px;
    text-align: center;
    justify-content: center;
    margin-top: 4px;
}


/* =====================================================
   PODCASTS
   ===================================================== */

.vl-podcasts-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    align-items: start;
}

/* Featured episode */
.vl-podcast-featured {
    display: flex;
    flex-direction: column;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.vl-podcast-art {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.vl-podcast-art--lg {
    height: 200px;
}

.vl-podcast-art--sm {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-sm);
    flex-shrink: 0;
}

.vl-podcast-logo {
    font-size: 40px;
    line-height: 1;
    opacity: 0.9;
}

.vl-podcast-ep-num {
    position: absolute;
    bottom: 12px;
    left: 14px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255,255,255,0.6);
}

.vl-podcast-ep-num--sm {
    position: static;
    font-size: 11px;
    font-weight: 700;
    color: rgba(255,255,255,0.8);
    letter-spacing: 0.05em;
}

.vl-podcast-featured-body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.vl-podcast-show {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-3);
}

.vl-podcast-title {
    font-size: 18px;
    font-weight: 800;
    letter-spacing: -0.03em;
    color: var(--text-1);
    line-height: 1.25;
}

.vl-podcast-desc {
    font-size: 13px;
    color: var(--text-2);
    line-height: 1.65;
}

.vl-podcast-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
}

.vl-podcast-host {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: var(--text-3);
    font-weight: 500;
}

.vl-podcast-dur {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-3);
}

.vl-podcast-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 4px;
}

/* Play button */
.vl-play-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--black);
    color: var(--white);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.18s, background 0.18s;
    flex-shrink: 0;
}

.vl-play-btn:hover {
    background: var(--lime);
    color: var(--black);
    transform: scale(1.08);
}

.vl-play-btn--sm {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
}

/* Episode list */
.vl-podcast-list {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.vl-podcast-ep-card {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 20px;
    border-bottom: 1px solid var(--border);
    cursor: pointer;
    transition: background 0.15s;
}

.vl-podcast-ep-card:last-child {
    border-bottom: none;
}

.vl-podcast-ep-card:hover {
    background: var(--bg);
}

.vl-podcast-ep-body {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.vl-podcast-ep-title {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-1);
    letter-spacing: -0.1px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.vl-podcast-ep-meta {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: var(--text-3);
    font-weight: 500;
}


/* =====================================================
   BUZZ (AI NEWS)
   ===================================================== */

.vl-buzz-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    align-items: start;
}

/* Featured story */
.vl-buzz-featured {
    display: block;
    text-decoration: none;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: transform 0.2s, box-shadow 0.2s;
}

.vl-buzz-featured:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.vl-buzz-featured-thumb {
    min-height: 320px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 24px;
}

.vl-buzz-featured-label {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.vl-buzz-featured-text {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.vl-buzz-headline-lg {
    font-size: clamp(18px, 2vw, 22px);
    font-weight: 800;
    color: var(--white);
    letter-spacing: -0.03em;
    line-height: 1.25;
}

.vl-buzz-excerpt {
    font-size: 13px;
    color: rgba(255,255,255,0.65);
    line-height: 1.65;
}

/* Source badges */
.vl-source-badge {
    display: inline-flex;
    align-items: center;
    padding: 3px 9px;
    border-radius: var(--radius-pill);
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    white-space: nowrap;
}

.vl-source--anthropic { background: rgba(197,255,51,0.2);  color: var(--lime); border: 1px solid rgba(197,255,51,0.3); }
.vl-source--verge     { background: rgba(255,255,255,0.1); color: rgba(255,255,255,0.8); border: 1px solid rgba(255,255,255,0.15); }
.vl-source--github    { background: #f0f0f0; color: #0D0D0D; }
.vl-source--figma     { background: #f0f0f0; color: #0D0D0D; }
.vl-source--openai    { background: #f0f0f0; color: #0D0D0D; }
.vl-source--vercel    { background: #f0f0f0; color: #0D0D0D; }

.vl-buzz-time {
    font-size: 11px;
    font-weight: 500;
    color: rgba(255,255,255,0.4);
}

/* News list */
.vl-buzz-list {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.vl-buzz-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 18px 20px;
    border-bottom: 1px solid var(--border);
    text-decoration: none;
    transition: background 0.15s;
    cursor: pointer;
}

.vl-buzz-item:last-child {
    border-bottom: none;
}

.vl-buzz-item:hover {
    background: var(--bg);
}

.vl-buzz-item:hover .vl-buzz-headline {
    color: var(--text-1);
}

.vl-buzz-item:hover .vl-buzz-arrow {
    color: var(--text-1);
    transform: translate(2px, -2px);
}

.vl-buzz-item-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 5px;
    min-width: 0;
}

.vl-buzz-item-top {
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Override badge colors for light-bg context */
.vl-buzz-list .vl-source-badge {
    background: var(--bg);
    color: var(--text-2);
    border: 1px solid var(--border);
}

.vl-buzz-list .vl-buzz-time {
    color: var(--text-3);
}

.vl-buzz-headline {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-2);
    line-height: 1.4;
    letter-spacing: -0.1px;
    transition: color 0.15s;
}

.vl-buzz-arrow {
    color: var(--border-md);
    flex-shrink: 0;
    transition: color 0.15s, transform 0.18s;
}


/* =====================================================
   FOOTER
   ===================================================== */

.vl-footer {
    background: var(--black);
    color: var(--white);
    padding: 56px 0 0;
}

.vl-footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 clamp(20px, 4vw, 48px) 48px;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 48px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.vl-footer-brand .vl-logo-text { color: var(--white); }
.vl-footer-brand .vl-logo-mark { background: rgba(255,255,255,0.1); }

.vl-footer-brand p {
    margin-top: 14px;
    font-size: 14px;
    color: rgba(255,255,255,0.45);
    line-height: 1.65;
}

.vl-footer-cols {
    display: flex;
    gap: 48px;
}

.vl-footer-col {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.vl-footer-col strong {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255,255,255,0.85);
    margin-bottom: 4px;
}

.vl-footer-col a {
    font-size: 14px;
    color: rgba(255,255,255,0.45);
    font-weight: 500;
    transition: color 0.15s;
}

.vl-footer-col a:hover { color: var(--white); }

.vl-footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px clamp(20px, 4vw, 48px);
    font-size: 13px;
    color: rgba(255,255,255,0.25);
    font-weight: 500;
}


/* =====================================================
   RESPONSIVE
   ===================================================== */

@media (max-width: 1100px) {
    .vl-projects-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .vl-spotlight-card {
        grid-template-columns: 280px 1fr;
    }
    .vl-challenge-layout {
        grid-template-columns: 1fr 300px;
    }
}

@media (max-width: 900px) {
    .vl-hero {
        grid-template-columns: 1fr;
        min-height: auto;
        padding-top: calc(var(--nav-h) + 40px);
    }
    .vl-hero-visual  { display: none; }
    .vl-hero-sub     { max-width: 100%; }

    .vl-spotlight-card {
        grid-template-columns: 1fr;
    }
    .vl-spotlight-visual {
        min-height: 200px;
    }

    .vl-challenge-layout {
        grid-template-columns: 1fr;
    }

    .vl-lab-grid,
    .vl-hype-grid {
        grid-template-columns: 1fr 1fr;
    }

    .vl-footer-inner {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .vl-nav-links {
        display: none;
        position: fixed;
        top: var(--nav-h);
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 16px;
        border-bottom: 1px solid var(--border);
        box-shadow: var(--shadow-md);
        gap: 2px;
    }
    .vl-nav-links.open { display: flex; }
    .vl-hamburger { display: flex; }

    .vl-projects-grid {
        grid-template-columns: 1fr 1fr;
    }

    .vl-section-hd--row {
        flex-direction: column;
        align-items: flex-start;
    }

    .vl-lab-grid,
    .vl-hype-grid {
        grid-template-columns: 1fr;
    }

    .vl-footer-cols {
        flex-direction: column;
        gap: 24px;
    }
}

@media (max-width: 480px) {
    .vl-pulse-row {
        flex-wrap: wrap;
    }
    .vl-pulse-sep {
        display: none;
    }
    .vl-pulse-stat {
        flex: 1;
        min-width: 45%;
        padding: 14px 8px;
    }

    .vl-countdown { gap: 6px; }
    .vl-cd-num {
        font-size: 24px;
        min-width: 50px;
        padding: 8px 10px;
    }

    .vl-projects-grid {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }
}
