.description {
    padding: 7rem 2rem 9rem;
    background: #ededf1;
    backdrop-filter: blur(4px);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    overflow: hidden;
}

.description-container {
    max-width: 950px;
    margin: 0 auto;
}

.bullets {
    list-style: none;
    margin: 2rem 0 1rem;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 1.3rem;
}

.bullets li {
    width: 60%;
    padding: 1.3rem 2.2rem;
    background: rgb(255 255 255);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 36px;
    transition: background 0.25s, border 0.25s, transform 2s cubic-bezier(0.22, 0.97, 0.33, 1.05);
    box-shadow: 0 20px 35px -18px rgba(0, 0, 0, 0.7);
    transform: translateX(80%);
    will-change: transform;
}

.bullets li.reveal-down {
    transform: translateX(0);
}

.bullets li.highlight-bullet {
    background: rgb(132 97 160 / 88%);
    border-left: 4px solid #e9c0ff;
}

.bullet-header {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    width: 100%;
    margin-bottom: 0.5rem;
}

.bullet-icon {
    display: inline-block;
    margin-right: 0.8rem;
    font-size: 2rem;
    vertical-align: middle;
    filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.3));
}

.bullets li strong {
    font-weight: 600;
    font-size: 1.5rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    background: black;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    flex: 1;
    word-break: break-word;
}

.bullets li p {
    color: rgb(29, 29, 31);
    font-size: 1.1rem;
    line-height: 1.6;
    font-weight: 300;
    margin-top: 0.5rem;
    word-break: break-word;
}

.bullets li.highlight-bullet strong {
    background: linear-gradient(135deg, #ffe4b5, #f5b0ff);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.signature-line {
    text-align: right;
    margin-top: 3rem;
    font-weight: 300;
    color: black;
    letter-spacing: 2px;
    font-size: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 2rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 0.5rem 1.5rem;
}

.signature-line span:not(:last-child)::after {
    content: "·";
    margin-left: 1.5rem;
    opacity: 0.5;
}