.icon-small {
    color: var(--text-primary);
}

.main-title {
    color: var(--text-primary);
}

.hero-title{
    color: var(--text-primary);
}
.tagline{
    color: var(--text-primary);
}
.hero-image{
    filter: var(--hero-image-filter);
}
.icon-open-link{
    color: var(--icon-dim);
}

.menu-item-text {
    color: var(--text-secondary);
}

.bento-child,
.case-link {
    background-color: var(--bg-tertiary);
    border: 1px solid var(--border-subtle);
}

.tag-pill {
    background-color: var(--accent-soft);
    color: var(--accent-primary);
}

.edge-blur-left {
    background: linear-gradient(to right, var(--edge-blur), transparent) !important;
}

.edge-blur-right {
    background: linear-gradient(to left, var(--edge-blur), transparent) !important;
}

.skills-set h3,
.skills-set ul li {
    color: var(--text-primary);
}
.skills-set ul{
    padding-left: 25px;
}
.app_logo_list {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 0.5rem;
}

.app_logo_list img {
    height: 48px;
    width: 48px;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
    object-fit: cover;
}

.app_logo_list img:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.1);
}

@media (max-width: 640px) {
    .app_logo_list {
        gap: 1.5rem;
        padding: 1.5rem;
    }

    .app_logo_list img {
        height: 36px;
    }
}

.case-study.not-ready {
    background-color: #fff;
    border-color: #e2e8f0;
}

.case-study.not-ready::after {
    content: "COMING SOON";
    position: absolute;
    top: 24px;
    right: -48px;
    background-color: var(--text-primary);
    color: var(--bg-primary);
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-align: center;
    text-transform: uppercase;
    padding: 10px 40px;
    transform: rotate(45deg);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    pointer-events: none;
    z-index: 10;
}

.modal-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: none;
    z-index: 9999;
}

.modal-backdrop {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(var(--bg-primary), 0.5);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    opacity: 0;
    z-index: 10;
}

.modal-content-container {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 80vh;
    background: var(--bg-primary);
    border-radius: 0;
    overflow-y: auto;
    overflow-x: hidden;
    box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.1);
    z-index: 20;
}

body.modal-open {
    overflow: hidden;
}

.close-btn {
    position: sticky;
    top: 24px;
    right: 24px;
    float: right;
    z-index: 100;
    background: var(--accent-primary);
    color: var(--text-primary);
    border: none;
    padding: 8px 20px;
    border-radius: 9999px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.close-btn:hover {
    background: var(--accent-primary-hover);
    transform: scale(1.05);
}