
.feat-tape,
.feat-tape-noise,
.feat-tape-row,
.feat-tape-row--a,
.feat-tape-row--b,
.tape-chip,
.tape-sep,
.tape-feat {
    display: none !important;
    animation: none !important;
}

.feat-wall {
    padding-block: clamp(64px, 10vw, 120px);
    border-top: 1px solid var(--line, oklch(0.35 0.02 250 / 0.4));
    border-bottom: 1px solid var(--line, oklch(0.35 0.02 250 / 0.4));
    background: var(--bg, oklch(0.1 0.02 250));
}

.feat-wall-head {
    max-width: 42ch;
    margin-bottom: clamp(32px, 5vw, 48px);
}

.feat-wall-kicker {
    display: block;
    font-family: var(--font-mono, monospace);
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--acc, oklch(0.74 0.18 245));
    margin-bottom: 12px;
}

.feat-wall-title {
    font-family: var(--font-disp, sans-serif);
    font-weight: 700;
    font-size: clamp(32px, 5vw, 56px);
    line-height: 1.05;
    color: var(--ink, oklch(0.97 0.01 250));
    margin: 0 0 12px;
}

.feat-wall-title em {
    color: var(--acc, oklch(0.74 0.18 245));
    font-style: normal;
}

.feat-wall-sub {
    font-family: var(--font-mono, monospace);
    font-size: 13px;
    line-height: 1.6;
    color: var(--ink-quiet, oklch(0.65 0.02 250));
    margin: 0;
}

.feat-bento {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 14px;
}

.feat-tile {
    grid-column: span 3;
    min-height: 200px;
    padding: 22px 20px;
    background: var(--bg-soft, oklch(0.12 0.02 250));
    border: 1px solid var(--line, oklch(0.35 0.02 250 / 0.4));
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    transition: border-color 0.2s ease, background 0.2s ease;
}

.feat-tile:hover {
    border-color: var(--line-2, oklch(0.55 0.03 250 / 0.5));
    background: oklch(0.14 0.02 250);
}

.feat-tile--wide {
    grid-column: span 6;
    min-height: 220px;
}

.feat-tile--accent {
    grid-column: span 3;
    border-color: oklch(0.74 0.18 245 / 0.45);
    background: oklch(0.12 0.03 250);
}

.feat-tile-cat {
    font-family: var(--font-mono, monospace);
    font-size: 10px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--ink-quiet, oklch(0.65 0.02 250));
}

.feat-tile h4 {
    font-family: var(--font-disp, sans-serif);
    font-weight: 600;
    font-size: 22px;
    line-height: 1.1;
    color: var(--ink, oklch(0.97 0.01 250));
    margin: 0;
}

.feat-tile p {
    font-family: var(--font-mono, monospace);
    font-size: 12px;
    line-height: 1.55;
    color: var(--ink-quiet, oklch(0.65 0.02 250));
    margin: 0;
    flex: 1;
}

.feat-tile-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    list-style: none;
    padding: 12px 0 0;
    margin: 0;
    border-top: 1px solid var(--line, oklch(0.35 0.02 250 / 0.4));
}

.feat-tile-tags li {
    font-family: var(--font-mono, monospace);
    font-size: 11px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--ink, oklch(0.9 0.01 250));
    padding: 5px 10px;
    border: 1px solid var(--line, oklch(0.35 0.02 250 / 0.4));
    border-radius: 4px;
    background: var(--bg, oklch(0.1 0.02 250));
}

@media (max-width: 900px) {
    .feat-bento {
        grid-template-columns: 1fr 1fr;
    }
    .feat-tile,
    .feat-tile--wide,
    .feat-tile--accent {
        grid-column: span 1;
    }
    .feat-tile--wide {
        grid-column: span 2;
    }
}

@media (max-width: 540px) {
    .feat-bento {
        grid-template-columns: 1fr;
    }
    .feat-tile--wide {
        grid-column: span 1;
    }
}
